php 的编码问题,无法手动重新输入evertin,我该如何修复它

发布于 2024-11-01 16:02:08 字数 293 浏览 1 评论 0原文

我已经尝试自己解决这个问题,但我只是继续让情况变得更糟。这很愚蠢,但我玩了一点编码,现在我收到

解析错误:语法错误,意外的 T_STRING 在第 1 行,

首先它将所有内容加倍,这很烦人,但我可以忍受它。现在,如果我将文本复制到微软记事本中,我就会丢失所有回车符。

我最终认为我想使用utf-8。有没有办法在不重新输入的情况下做到这一点。

我正在使用 Windows 和共享主机。作为旁注,我生成了数千行代码。

我应该提到我一直在使用netbeans。

任何帮助将不胜感激

I have tried to fix this myself and I just keep on making it worse. It was stupid but I played a little with the encoding and now I am getting

Parse error: syntax error, unexpected T_STRING
on line 1

First It double spaced everything which was annoying But I could live with it. Now if I copy the text into microsoft notepad I loose all cariage returns.

I take it in the end I want to be in utf-8. Is there way to do this without retyping.

I am using windows and a shared host. As a side note I have generated several thousand lines of code.

I should mention i have been using netbeans.

Any Help would be appreciated

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

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

发布评论

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

评论(1

玩心态 2024-11-08 16:02:08

嗯。你说你玩过编码?好吧,这是我的盲目猜测......

所以,你有这个错误:

解析错误:语法错误,意外
第 1 行的 T_STRING

你有类似的东西吗(第 1 行)???

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

如果有,请确保编码值是小写的,例如 utf-8 而不是 UTF-8

<?xml version="1.0" encoding="utf-8" ?>

或者尝试删除这一行。

Hm. you said that you've played with encoding? Well, this is my blind guess...

So, you've got this error:

Parse error: syntax error, unexpected
T_STRING on line 1

Do you have something like this (line 1) ???

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

if you have, be sure that encoding value is lowercase like utf-8 not UTF-8.

<?xml version="1.0" encoding="utf-8" ?>

or try removing this line.

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