那是因为这只是一种不好的做法。我建议重新转换所有脚本以使用 。如果您很懒,您可以使用查找和替换,如果您可以使用强大的命令行(如 bash),您可以使用 sed 来为您完成此操作。
That's because it's simply a bad practice. I suggest re-converting all your scripts to use <?php. If you're lazy, you can use a find and replace, if you have access to powerful command lines like bash you can use sed to do this for you.
发布评论
评论(3)
您需要更新 php.ini 文件。
设置short_open_tag = 1
请参阅PHP 手册
You need to update your php.ini file.
Set short_open_tag = 1
See the PHP Manual
那是因为这只是一种不好的做法。我建议重新转换所有脚本以使用
。如果您很懒,您可以使用查找和替换,如果您可以使用强大的命令行(如 bash),您可以使用 sed 来为您完成此操作。
That's because it's simply a bad practice. I suggest re-converting all your scripts to use
<?php
. If you're lazy, you can use a find and replace, if you have access to powerful command lines like bash you can use sed to do this for you.https://www.php.net/manual/en/ini.core。 php
你需要
或者调整你系统的php.ini文件。
https://www.php.net/manual/en/ini.core.php
you need to
or adjust your systems php.ini file.