gpt4 book ai didi

php include html 添加空格

转载 作者:行者123 更新时间:2023-11-28 03:52:39 25 4
gpt4 key购买 nike

我在包含多个 html 页面时遇到了问题。我有主要的 index.html,但它开始有点太复杂了,所以我决定将它分成多个 html 文件,每个文件都使用 php 导入到单个 index.php 中。

index.php文件

<?php
include('head.html');
include('header.html');
include('slideshow.html');
include('pictureGalery.html');
include('footer.html');
include('closer.html');
?>

使用 Google Chrome Developer Tool 我发现,php 还包括一些空格(您可以在 div 标题、内容、容器等之间的图片中看到它们...通过一些谷歌搜索,我发现了一些关于这个问题的文章,比如:

我还尝试导入 reset.css 文件 ( http://meyerweb.com/eric/tools/css/reset/ ) 但它也没有用。 唯一 似乎对我有效 的方法是发布 cebasso ( https://stackoverflow.com/a/14362246/1784053 )。但我觉得这种方式有点过于激进和低效。

关于如何解决这个问题还有其他想法吗?

enter image description here

最佳答案

然后,最终这是由包含的文件中的意外 BOM 引起的:为方便日后引用,我只是简单地贴出PHP检查的代码。

print_r(array_map('dechex', array_map('ord', str_split(file_get_contents("xxxxxxxxxxxxx.html"))))); 

我肯定更喜欢使用Notepad++ 或其他软件来保存非BOM 版本,但如果仍然喜欢使用 PHP 删除它们,只需使用:这会在您每次执行时永久删除文件中的前 3 个字符,因此只运行一次。

$filename="xxxxxxx.html";
$filec = file_get_contents($filename);
file_put_contents($filename,substr($filec, 3, strlen($filec)));

希望对你有帮助:D祝你好运!

关于php include html 添加空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18773912/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com