将php.ini 里的
short_open_tag = off
改成
short_open_tag = On

 

 

 

===================

控制
参数: short_open_tag = On
如果设置为Off,则不能正常解析类似于这样形式的php文件
<?
phpinfo()
?>

而只能解析
<?php
phpinfo()
?>
这样形式的php文件
所以要想php支持短标签,需要我们把short_open_tag  设置为On.

相关文章:

  • 2019-06-19
  • 2021-09-06
  • 2022-12-23
  • 2021-08-28
  • 2022-12-23
  • 2022-12-23
  • 2021-10-28
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-29
  • 2022-02-17
  • 2022-12-23
  • 2022-01-08
  • 2021-12-26
相关资源
相似解决方案