J'ai une fonction personnalisée et je veux la passer dans un modèle de lame. Voici la fonction:
function trim_characters( $text, $length = 45, $append = '…' ) {
$length = (int) $length;
$text = trim( strip_tags( $text ) );
if ( strlen( $text ) > $length ) {
$text = substr( $text, 0, $length + 1 );
$words = preg_split( "/[\s]| /", $text, -1, PREG_SPLIT_NO_EMPTY );
preg_match( "/[\s]| /", $text, $lastchar, 0, $length );
if ( empty( $lastchar ) )
array_pop( $words );
$text = implode( ' ', $words ) . $append;
}
return $text;
}
Et l'utilisation est comme ceci:
$string = "A VERY VERY LONG TEXT";
trim_characters( $string );
Est-il possible de passer une fonction personnalisée au modèle de lame? Je vous remercie.
Vous n'avez pas à passer quoi que ce soit à la lame. Si vous définissez votre fonction, vous pouvez l'utiliser depuis la lame.
app/helpers.php
fichier.trim_characters
fonctionne.composer.json
fichier .composer dump-autoload
.Maintenant, utilisez simplement la fonction directement dans Blade:
{{ trim_characters($string) }}