我使用刀片模板生成语法错误...
<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>
有什么想法吗?
感谢。
答案 0 :(得分:0)
尝试更改代码,如下所示,
<title>
@section('title')
this is my title
@stop
</title>
注意: 我已将 @show 更改为代码中的 @stop 。
答案 1 :(得分:0)
它看起来像是EOL转换问题。
如果您在Windows上使用Notepad ++,请确保您拥有'Edit/EOL Conversion/Windows Format'
。