gpt4 book ai didi

PHP DOMDocument::save() 保存为 ASCII 而不是 UTF-8

转载 作者:行者123 更新时间:2023-12-05 04:14:42 24 4
gpt4 key购买 nike

我正在使用 DOMDocumentSimpleXMLElement 创建格式化的 XML 文件。虽然这一切都有效,但生成的文件保存为 ASCII,而不是 UTF-8。我找不到关于如何更改它的答案。

XML 是这样创建的:

    $XMLNS = "http://www.sitemaps.org/schemas/sitemap/0.9";
$rootNode = new \SimpleXMLElement("<?xml version='1.0' encoding='UTF-8'?><urlset></urlset>");
$rootNode->addAttribute('xmlns', $XMLNS);

$url = $rootNode->addChild('url');
$url->addChild('loc', "Somewhere over the rainbow");

//Turn it into an indented file needs a DOMDocument...
$dom = dom_import_simplexml($rootNode)->ownerDocument;
$dom->formatOutput = true;

$path = "C:\\temp";

// This saves an ASCII file
$dom->save($path.'/sitemap.xml');

生成的 XML 看起来像这样(我认为它应该是这样):

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>Somewhere over the rainbow</loc>
</url>
</urlset>

不幸的是,该文件是 ASCII 编码的,而不是 UTF-8。

我该如何解决这个问题?

编辑:不要使用 Notepad++ 检查编码

由于下面已接受的答案,我现在可以使用它了。有一个注意事项:我使用 Notepad++ 打开文件并检查编码。但是,当我重新生成文件时,Notepad++ 会更新其选项卡并出于某种原因将 ANSI 指示为编码。在 Notepad++ 中关闭并重新打开同一个文件将再次指示 UTF-8。这让我很困惑。

最佳答案

我认为这里发生了一些事情。首先,您需要:

$dom->encoding = 'utf-8';

而且,我认为我们应该尝试手动创建 DOMDocument 并指定正确的编码。所以:

<?php

$XMLNS = "http://www.sitemaps.org/schemas/sitemap/0.9";
$rootNode = new \SimpleXMLElement("<?xml version='1.0' encoding='UTF-8'?><urlset></urlset>");
$rootNode->addAttribute('xmlns', $XMLNS);

$url = $rootNode->addChild('url');
$url->addChild('loc', "Somewhere over the rainbow");

// Turn it into an indented file needs a DOMDocument...
$domSxe = dom_import_simplexml($rootNode)->ownerDocument;

// Set DOM encoding to UTF-8.
$domSxe->encoding = 'UTF-8';

$dom = new DOMDocument('1.0', 'UTF-8');
$domSxe = $dom->importNode($domSxe, true);
$domSxe = $dom->appendChild($domSxe);

$path = "C:\\temp";

$dom->formatOutput = true;
$dom->save($path.'/sitemap.xml');

还要确保您添加的任何元素或 CData 实际上是 UTF-8(参见 utf8_encode())。

使用上面的示例,这对我有用:

php > var_dump($utf8);
string(11) "ᙀȾᎵ⁸"

php > $XMLNS = "http://www.sitemaps.org/schemas/sitemap/0.9";
php > $rootNode = new \SimpleXMLElement("<?xml version='1.0' encoding='UTF-8'?><urlset></urlset>");
php > $rootNode->addAttribute('xmlns', $XMLNS);
php > $url = $rootNode->addChild('url');

php > $url->addChild('loc', "Somewhere over the rainbow $utf8");

php > $domSxe = dom_import_simplexml($rootNode);
php > $domSxe->encoding = 'UTF-8';
php > $dom = new DOMDocument('1.0', 'UTF-8');
php > $domSxe = $dom->importNode($domSxe, true);
php > $domSxe = $dom->appendChild($domSxe);
php > $dom->save('./sitemap.xml');


$ cat ./sitemap.xml
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><url><loc>Somewhere over the rainbow ᙀȾᎵ⁸</loc></url></urlset>

关于PHP DOMDocument::save() 保存为 ASCII 而不是 UTF-8,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34522323/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com