FileZilla 说 W3.org 链接有错误!

发布于 2024-09-05 00:55:43 字数 376 浏览 4 评论 0原文

我刚刚设置了免费网络托管 (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 技术交流群。

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

发布评论

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

评论(1

凉城 2024-09-12 00:55:43

您的问题是 中的 是 PHP 短标记。

将第一行更改为:

<?php print "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; ?>

来修复此问题,或禁用 PHP 的短标记。

Your issue is that the <? in <?xml is a PHP short tag.

Change the first line to:

<?php print "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; ?>

to fix this, or disable PHP's short tags.

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