<?php
include("a.php");
include("b.php");
include("c.php");
?>
<html>
<head>
<link rel="stylesheet" type="text/css" href="src/main.css" ></link>
<script src="src/jquery-1.3.2.js" type="text/javascript" ></script>
</head>
<body>
some more code here...
当页面呈现时,我看到布局中添加了大约18px,并且链接和脚本标签在主体部分内移动。 如果我删除b.php和c.php的包含它不会发生。
有什么想法吗?
答案 0 :(得分:2)
4。 做
?><html>
而不是
?>
<html>
答案 1 :(得分:0)
最后关闭?>
后,检查所包含文件末尾是否有空格。最简单的方法是确保之后没有任何东西可以完全删除它:
<?php
// here is my file
// and i don't have to close the PHP tag
// woo