首页 > 代码库 > yii2 and short_open_tag
yii2 and short_open_tag
在看yii2的时候, 在main文件里看到了这样一段代码
<?= Yii::$app->language ?>
而我查看了php.ini里的配置, short_open_tag=Off, 是关闭的.
于是查了 php.net 关于 short_open_tag 的说明, 其中有一句
This directive also affected the shorthand <?=
before PHP 5.4.0, which is identical to <? echo
. Use of this shortcut requiredshort_open_tag
to be on. Since PHP 5.4.0, <?=
is always available.
大意就是指, short_open_tag 这项配置, 在 5.4.0 以前设置是生效的, 在 5.4.0 以后, 此设置不管设置为 On 或是Off 总是 On.
yii2 and short_open_tag
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。