In meinem Code, ich habeDomDocument-> saveHTML() Umwandlung Platz
$document = DomDocument->loadHTML($someHTML);
$xPath = new DOMXPath($document);
//
//do some xpath query and processing
//
$result = $document->saveHTML();
Die html Ich bin Verarbeitung enthält :
<html>
<body>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
normal;text-autospace:none"><b><span style='font-size:9.0pt;font-family:"ArialNarrow","sans-serif";
color:red'> </span></b></p>
</body>
</html>
und Ergebnisse in:
<html>
<body>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
normal;text-autospace:none"><b><span style='font-size:9.0pt;font-family:"ArialNarrow","sans-serif";
color:red'> </span></b></p>
</body>
</html>
Wie verhindere ich, dass
in Leerzeichen konvertiert wird?
Welche Art von Xpath und Verarbeitung machst du, dass die Entität entfernt wird? Verwenden Sie Normalize Space oder etwas ähnliches? – hakre
Wahrscheinlich verwandt: [PHP DOMNode entities und nodeValue] (http://stackoverflow.com/questions/2752434/php-domnode-entities-and-nodevalue) – hakre
Danke, ich werde diese Option ausprobieren – ltfishie