27

カスタム関数があり、それをブレード テンプレートに渡したいです。関数は次のとおりです。

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;
}

そして使い方はこんな感じです。

$string = "A VERY VERY LONG TEXT";
trim_characters( $string );

カスタム関数をブレード テンプレートに渡すことはできますか? ありがとうございました。

4

2 に答える 2

51

Blade に何も渡す必要はありません。関数を定義すると、ブレードから使用できます。


  1. 新しいapp/helpers.phpファイルを作成します。
  2. trim_charactersそれに関数を追加します。
  3. composer.jsonそのファイルをファイルに追加します
  4. 実行しますcomposer dump-autoload

ブレードで関数を直接使用するだけです。

{{ trim_characters($string) }}
于 2015-09-07T02:14:41.037 に答える