FileZilla 说 W3.org 链接有错误!
我刚刚设置了免费网络托管 (trigoblocks.comuf.com),我通过 FileZilla FTP 连接并上传了我的文件。我得到的错误是“解析错误:语法错误,第 1 行 /home/a3639879/public_html/header.php 中出现意外的 T_STRING”。 Header.php 第 1-2 行:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"DTD/xhtml1-strict.dtd">
在使用 XAMPP 的 localhost 上时,我没有收到此错误。
I just got my free web hosting set up (trigoblocks.comuf.com), I connected via FileZilla FTP and uploaded my files. The error I get is "Parse error: syntax error, unexpected T_STRING in /home/a3639879/public_html/header.php on line 1".
Header.php line 1-2:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"DTD/xhtml1-strict.dtd">
I do not get this error while on localhost with XAMPP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的问题是
中的
是 PHP 短标记。
将第一行更改为:
来修复此问题,或禁用 PHP 的短标记。
Your issue is that the
<?
in<?xml
is a PHP short tag.Change the first line to:
to fix this, or disable PHP's short tags.