哪个 echo 变量是正确的

Which is correct on echo variable

我使用 PHP 5.2 Appserve,这段代码运行良好

<?PHP
// after connection to DB and getting title from setting table
$title = $line['wptitle'];
?>
<title><?=$title?></title>

但在我开始使用带有 PHP 5.3 的 Vertrigo Serv 后,上面的代码不再显示标题,只有当我将它编辑为

<title><?PHP echo $title; ?></title>

<?=$title?>是不是已经不行了?

只需确保您的 php.ini 文件中有:

short_open_tag=On

您也可以放入 .htaccess 文件:

php_flag short_open_tag on