web-dev-qa-db-ja.com

PHPコード内Laravel 5ブレードテンプレート

私はいくつかのPHPコードをLaravel 5 Blade Template。

@foreach ($farmer->tasks as $task)
    @if ($task->pivot->due_at) < date(now))
        $style = 'alert alert-danger';
    @elseif ($task->pivot->due_at) > date(now))
        $style = 'alert alert-success';
    @else
        $style = '';
    @endif
@endforeach

PHPコード内のコードLaravel 5ブレードテンプレート??

28
abu abu

ドキュメント によると、Laravel 5.2以降では、次のコードを使用できます。

@php
{{-- php code here --}}
@endphp

または、 here の説明に従って、Bladeテンプレートエンジンを拡張できます。

上記の解決策のいずれも適切でない場合、@ Armenと@Gonzaloによって与えられた答えに固執します

67
user28864

Phpタグを開く/閉じるだけ:<?php $style = '...'; ?>

13

Laravelのレシピでは、PHPタグを含めずにシンプルで効果的な方法を提案しています

{{--*/ $var = 'test' /*--}}

{{--}}はブレードコメントとして機能します/および/は、結果として生じるコメントの効果を元に戻します

<?php $var = 'test' ?>

問題は、phpタグを含めるよりも長いことです:-(

3
Gonzalo Cao

次の新しいNewBladeCompilerは、変数割り当て、クラス宣言などのすべてのphpコードを受け入れるために@{ }}を使用します。 @{ $variable = 0; }}<?php $variable=0; ?>にコンパイルされます

    <?php

use Illuminate\View\Compilers\BladeCompiler;

class NewBladeCompiler extends BladeCompiler
{

    /**
     * Get the echo methods in the proper order for compilation.
     *
     * @return array
     */
    function getEchoMethods()
    {
        $methods = [
            'compileRawEchos'     => strlen(stripcslashes($this->rawTags[0])),
            'compileEscapedEchos' => strlen(stripcslashes($this->escapedTags[0])),
            'compileRegularEchos' => strlen(stripcslashes($this->contentTags[0])),
            'compilePhpEchos'     => strlen(stripcslashes("@{"))
        ];

        uksort($methods, function ($method1, $method2) use ($methods) {
            // Ensure the longest tags are processed first
            if( $methods[$method1] > $methods[$method2] )
            {
                return -1;
            }
            if( $methods[$method1] < $methods[$method2] )
            {
                return 1;
            }
            // Otherwise give preference to raw tags (assuming they've overridden)
            if( $method1 === 'compilePhpEchos' )
            {
                return -1;
            }
            if( $method2 === 'compilePhpEchos' )
            {
                return 1;
            }
            if( $method1 === 'compileRawEchos' )
            {
                return -1;
            }
            if( $method2 === 'compileRawEchos' )
            {
                return 1;
            }
            if( $method1 === 'compileEscapedEchos' )
            {
                return -1;
            }
            if( $method2 === 'compileEscapedEchos' )
            {
                return 1;
            }
        });

        return $methods;
    }

    function compilePhpEchos( $value )
    {
        $pattern  = sprintf('/(@)?%s\s*(.+?)\s*%s(\r?\n)?/s', "@{", "}}");
        $callback = function ($matches) {
            $whitespace = empty($matches[3]) ? '' : $matches[3] . $matches[3];
            return $matches[1] ? substr($matches[0], 1) : '<?php ' . $matches[2] . ' ?>' . $whitespace;
        };
        return preg_replace_callback($pattern, $callback, $value);
    }

}

?>
2
Elitexp