为什么PHP DOMDocument loadHTML不适用于波斯语字符?

时间:2016-09-06 01:57:02

标签: php dom xpath unicode utf-8

Here is my code

<?php

$data = <<<DATA
<div>
    <p>سلام</p>                                         // focus on this line
    <p class="myclass">Remove this one</p>
    <p>But keep this</p>
    <div style="color: red">and this</div>
    <div style="color: red">and <p>also</p> this</div>
    <div style="color: red">and this <div style="color: red">too</div></div>
</div>
DATA;

$dom = new DOMDocument();
$dom->loadHTML(mb_convert_encoding($data, 'HTML-ENTITIES', 'UTF-8'), LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD);
$xpath = new DOMXPath($dom);

foreach ($xpath->query("//*[@*]") as $node) {
    $parent = $node->parentNode;
    while ($node->hasChildNodes()) {
        $parent->insertBefore($node->lastChild, $node->nextSibling);
    }
    $parent->removeChild($node);
}

echo $dom->saveHTML();

正如我在问题标题中提到的,我网站的内容是波斯语(非英语)。但是代码对于波斯语字符不起作用。

当前输出:

.
.
    <p>&#1587;&#1604;&#1575;&#1605;</p>
.
.

预期输出:

.
.
    <p>سلام</p>
.
.

它有什么问题,我该如何解决?

注意:另外,如您所见,我已使用mb_convert_encoding($data, 'HTML-ENTITIES', 'UTF-8')将其更正(基于this answer,但仍然没有工作。

1 个答案:

答案 0 :(得分:1)

波斯语字符被编码为数字字符引用。它们会在浏览器中正确显示,或者您可以通过使用html_entity_decode()对其进行解码来查看原始内容,例如:

echo html_entity_decode("&#1587;&#1604;&#1575;&#1605;");

输出:

سلام

如果您更喜欢输出中的原始字符而不是数字字符引用,则可以更改:

echo $dom->saveHTML();

为:

echo $dom->saveHTML($dom->documentElement);

这会稍微改变序列化,结果是:

<div>
    <p>سلام</p>
    Remove this one
    <p>But keep this</p>
    and this
    and <p>also</p> this
    and this too
</div>

Example.