PHP的Tag标签

PHP的标签有至少四种:<?php ?>、<?= ?>、<script language="php"></script>、<? ?>、<% %>(ASP风格)、<%= %>。

PHP的配置文件php.ini中:

"<? ?>"的支持需要short_open_tag=On,要在XML中使用PHP,需要禁用此标签。

"<%%>"的支持需要asp_tags=On。

"<?= ?>"总是有效的,无论short_open_tag是否设置。

除了<?php ?>和<?=?>其他的标签在PHP7.0.0中被移除,强烈建议使用<?php?>标签,代码才能更好的兼容性。

 

source:http://php.net/manual/en/language.basic-syntax.phpmode.php#99083

posted @ 2016-10-17 14:59  GoodByeZ  阅读(520)  评论(0编辑  收藏  举报