在视图中输出PHP?

时间:2017-11-14 15:54:37

标签: php laravel

我有一个传递vars的包含:

@include('site.my-view', ['text' => '<p>some text</p>'])

但我希望在text var中添加一些text和php,如下所示:

@include('site.my-view', ['text' => '<p>some text {{ $myVar }}</p>'])

但这表现为:

some text <?php echo $myVar ?>

在my-view中,text var的输出如下:

{!! $text !!}

我怎样才能让它实际回声?我没试过{{}}。

1 个答案:

答案 0 :(得分:2)

你可以这样做 -

@include('site.my-view', ['text' => '<p>some text '.$myVar.'</p>'])