所以,我有2个PHP文件,index.php
和include.php
。
在index.php
<?php
include ('include.php');
?>
在include.php
<?
$a = 1>0;
echo "test";
当我运行index.php
时,我得到的是
0; echo "test";
当include.php使用短开标签时会发生这种情况,任何人都知道问题是什么?
我正在使用PHP 5.4.16
答案 0 :(得分:0)
尝试在.htaccess中添加此内容
<IfModule mod_php5.c>
php_value short_open_tag 1
</IfModule>
或 在php.ini中设置
short_open_tag = On