如何在Yii2中注释掉结构<! - ?=? - >

时间:2017-07-07 20:03:41

标签: php yii2

一个微不足道的问题,但我所有的努力都要注释掉这样的代码行:

<?=$form->field($model, 'bew_id')->textInput(['placeholder' => 'Bew']) ?>

使用PHP和/或HTML-comments失败。以下尝试没有取得成功:

//

/ * * /

&lt; - ! - - &gt;

任何想法?

2 个答案:

答案 0 :(得分:4)

<?php更改为<?php /*echo $form->field($model, 'bew_id')->textInput(['placeholder' => 'Bew']) */ ?> ,然后执行评论

<?= $form->field($model, 'bew_id')->textInput(['placeholder' => 'Bew']) ?>

因为这个

<?php echo $form->field($model, 'bew_id')->textInput(['placeholder' => 'Bew']) ?>

的简写
<system.webServer>
 <httpProtocol>
   <customHeaders>
     <add name="X-Content-Type-Options" value="nosniff" />
   </customHeaders>
 </httpProtocol>
</system.webServer>

使用任何评论//或/ * * /

答案 1 :(得分:1)

在开头删除<?=,然后您可以使用<!--进行评论,如下所示

<!---$form->field($model, 'bew_id')->textInput(['placeholder' => 'Bew']) ?>-->