php 包含 xhtml1-strict.dtd

发布于 2024-11-06 01:32:10 字数 436 浏览 0 评论 0原文

我有一个简单的 index.php 文件,用于检查用户身份验证,如果一切正常,则包含带有用户库的 index.html 文件:

<?php
if(!user_is_authenticated()) {
    header("location: http://someloginsite");
}
include("index.html");
?>

我对 xhtml1-strict.dtd index.html 声明有问题 - 如果声明了包含的 html 文件如前所述,我收到以下错误:

Parse error: syntax error, unexpected T_STRING in /var/www/.../index.html on line 1

对于所有其他声明,它都可以正常工作...我缺少什么?

I have a simple index.php file which checks for user authentication, and if all is ok includes index.html file with user gallery:

<?php
if(!user_is_authenticated()) {
    header("location: http://someloginsite");
}
include("index.html");
?>

I have an issue with xhtml1-strict.dtd index.html declaration - if the html file included is declared as mentioned I get the following error:

Parse error: syntax error, unexpected T_STRING in /var/www/.../index.html on line 1

With all other declarations it works fine... What am I missing?

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

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

发布评论

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

评论(1

不羁少年 2024-11-13 01:32:10

你的问题是 xml 声明

<?xml version="1.0" encoding="UTF-8"?>
^^ <-- here

它看起来像 php.ini。关闭短标签或回显声明

echo '<?xml version="1.0" encoding="UTF-8"?>';

Your problem is the xml declaration

<?xml version="1.0" encoding="UTF-8"?>
^^ <-- here

It looks like php. Either turn off short tags or echo the declaration

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