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 更新为 5.3.17,这是最新的稳定版本。
出于某种原因,此 echo 语句产生了意想不到的结果:
<? echo ('<p style="color:#808080;">Hello, <em>'.$_SESSION["user"].'</em>'); ?>
结果:
Hello, '.$_SESSION["user"].';
感谢您的任何意见!
你可能没有short_open_tags启用。请改用完整的打开标记 ( <?php),或在 中打开它php.ini。
short_open_tags
<?php
php.ini