SimpleXML 西里尔字母编码

发布于 2024-11-04 17:59:34 字数 621 浏览 1 评论 0原文

这是我正在使用的 XML 文件类型:

<?xml version="1.0" encoding="UTF-8"?>
<ProductCatalog>
 <ProductType>Дънни платки</ProductType>
 <ProductType>Дънни платки 2</ProductType>     
</ProductCatalog>

当我使用以下代码运行 PHP 文件时:

$pFile = new SimpleXMLElement('test.xml', null, true);      
foreach ($pFile->ProductType as $pChild)
{
var_dump($pChild);
}

我得到以下结果:

object(SimpleXMLElement)#5 (1) { [0]=> string(40) "Дънна платка наÑтолна"

我在 XML 文件中尝试了不同的编码,但它不能很好地处理西里尔字母符号。

This is the type of XML file, which I am using:

<?xml version="1.0" encoding="UTF-8"?>
<ProductCatalog>
 <ProductType>Дънни платки</ProductType>
 <ProductType>Дънни платки 2</ProductType>     
</ProductCatalog>

And when I run the PHP file with the following code:

$pFile = new SimpleXMLElement('test.xml', null, true);      
foreach ($pFile->ProductType as $pChild)
{
var_dump($pChild);
}

I get the following results:

object(SimpleXMLElement)#5 (1) { [0]=> string(40) "Дънна платка наÑтолна"

I have tried different encodings in the XML file but it's not working well with Cyrillic symbols.

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

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

发布评论

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

评论(1

李不 2024-11-11 17:59:34

如果在浏览器中切换字符编码(为 utf-8)会发生什么?
我的意思是,看起来像是输出问题。

What happens if you switch Character encoding (to utf-8) in browser?
I mean, looks like output issue.

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