php 包含 xhtml1-strict.dtd
我有一个简单的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的问题是 xml 声明
它看起来像 php.ini。关闭短标签或回显声明
Your problem is the xml declaration
It looks like php. Either turn off short tags or echo the declaration