在 PHP 7.2.0 中,空的 <?php?> 代码块会输出“未加引号的字符串”警告。为了防止这种情况,请在代码块中添加至少一个空格。
示例
<?php
<?php/*
echo "This was some useful code.\n";
*/?>
?>
显示:PHP Warning: Use of undefined constant php - assumed 'php' (this will throw an Error in a future version of PHP)
通过以下方式修复
<?php
<?php /*
echo "This was some useful code.\";
*/?>
?>
不知道这是否是一个故意的行为或副作用。