我刚刚安装了 php 5.3.0,它不会使用像 <? 这样的短开放标签运行 php 脚本,只有 <?PHP。
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您需要更新 php.ini 文件。
设置 short_open_tag = 1
请参阅PHP 手册
那是因为这只是一个不好的做法。我建议将所有脚本重新转换为使用<?php. 如果您很懒惰,可以使用查找和替换,如果您可以访问强大的命令行(如 bash),则可以使用 sed 为您执行此操作。
<?php
http://us2.php.net/manual/en/ini.core.php
你需要
ini_set("short_open_tag", 1)
或调整您的系统 php.ini 文件。