1

我在使用刀片模板时遇到语法错误...

<title>
    @section('title')
        this is my title
    @show
</title>

生成的输出无法关闭打开的 PHP 标记?

<title>
    <?php $__env->startSection('title')
        this is my title
    <?php echo $__env->yieldSection(); ?>
</title>

如果我执行以下操作,它会按预期工作......

<title>
    @section('title'); ?>
        this is my title
    @show
</title>

有任何想法吗?

谢谢。

4

2 回答 2

0

它看起来像一个 EOL 转换问题。如果您在 Windows 上使用 Notepad++,请确保您拥有'Edit/EOL Conversion/Windows Format'.

于 2014-04-27T04:54:29.143 回答
0

尝试如下更改您的代码,

<title>
    @section('title')
        this is my title
    @stop
</title>

注意:我已在您的代码中将@show更改为@stop

于 2014-04-26T19:53:51.120 回答