由于 PHP 文件管理功能,BOM 位于 doctype 之前

发布于 2024-12-06 10:09:13 字数 724 浏览 0 评论 0原文

我已经在此处询问为什么我的页面 在 IE 中无法运行。答案是我在文档类型之前有一个字节。

但是,我检查并重新检查它,doctype之前没有空格,我将文档保存为ANSI,不带BOM的UTF-8(所有都带有记事本)并且它不会消失。

但是,我能够收集一些有趣的数据。我的网站用于显示内容模板。 如果我选择标题(问题所在)并直接在 IE 中显示它,它就可以工作!

所以我认为当从 php 读取文件并显示文件时会添加该位。 用于显示内容的 PHP 代码:

    function gettemplate ($templatename) {
        $filename = './templates/'. $templatename . ".tpl";
        return ReadFromFile($filename);
    }

文件的扩展名是 .tpl 但它的工作方式与 .html 完全相同(我已经检查过)

我怎样才能解决这个问题吗?

I have asked here why my page was not working in IE. The answer was that i had a byte just before the doctype.

However, i check it and re-check it, there is no a white space before doctype, i saved the document as ANSI, as UTF-8 without BOM (all of the with notepad) and it does not go away.

But, i was able to collect some interesting data. My website uses for displaying the content templates. If i select the header (where the problem is) and display it directly in IE, it works!

So i think the bit is added when the files are read from php and displayed.
PHP codes for displaying the content:

    function gettemplate ($templatename) {
        $filename = './templates/'. $templatename . ".tpl";
        return ReadFromFile($filename);
    }

The extension of the files is .tpl but it works exactly the same as if it was .html (i have checked it)

How can i solve this issue?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

余罪 2024-12-13 10:09:13

当我对您的页面进行十六进制转储时:

$ GET http://juancarlosoleacañizares.es/ | hd | head -n 1
00000000  ef bb bf ef bb bf 3c 21  44 4f 43 54 59 50 45 20  |......<!DOCTYPE |

我看到两个 BOM 标记(两次 EF BB BF),这是不寻常的。您检查过 .php 文件本身是否有 BOM 标记吗?

When I do a hexdump of your Page:

$ GET http://juancarlosoleacañizares.es/ | hd | head -n 1
00000000  ef bb bf ef bb bf 3c 21  44 4f 43 54 59 50 45 20  |......<!DOCTYPE |

I see two BOM-Markers (two times EF BB BF) which is unusual. Have you checked if the .php-files themselves have BOM-Markers?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文