PHP的奇怪问题?

来源:百度知道 编辑:UC知道 时间:2024/05/10 23:04:30
只要连续include 2个php文件就会出这个问题

index.php
<?php
include '1.php';
include '2.php';
?>
<!DOCTYPE html PUBLIC "-//W3C//Dtd XHTML 1.0 transitional//EN" "http://www.w3.org/tr/xhtml1/Dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>index</title>
</head>
<body leftmargin="0" topmargin="0">
<table width="100" height="200">
<tr><td width="100" height="200" bgcolor="#FF0000"> </td></tr>
</table>

<table width="100" height="200">
<tr><td width="100" height="200" bgcolor="#FF0000"> </td></tr>
</table>

你的空行是这个语句输出的

我在我机子上测试过了,没有你所说的空行
你1.php,和2.php文件包含了哪些内容??