使用短标签包含php文件时出现问题

时间:2015-12-14 03:31:54

标签: php php-shorttags

所以,我有2个PHP文件,index.phpinclude.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

1 个答案:

答案 0 :(得分:0)

尝试在.htaccess中添加此内容

<IfModule mod_php5.c>
   php_value short_open_tag 1
 </IfModule>

或 在php.ini中设置

short_open_tag = On