所以,我有 2 个 PHP 文件,index.php
并且include.php
.
在index.php
<?php
include ('include.php');
?>
在include.php
<?
$a = 1>0;
echo "test";
当我跑步index.php
时,我得到的是
0; echo "test";
当 ths include.php 使用短打开标签时会发生这种情况,有人知道问题出在哪里吗?
我正在使用 PHP 5.4.16
所以,我有 2 个 PHP 文件,index.php
并且include.php
.
在index.php
<?php
include ('include.php');
?>
在include.php
<?
$a = 1>0;
echo "test";
当我跑步index.php
时,我得到的是
0; echo "test";
当 ths include.php 使用短打开标签时会发生这种情况,有人知道问题出在哪里吗?
我正在使用 PHP 5.4.16