J'essaie d'utiliser SimpleXML en combinaison avec XPath pour trouver des nœuds qui contiennent une certaine chaîne.Utilisez XPath avec PHP SimpleXML pour trouver des nœuds contenant une chaîne
<?php
$xhtml = <<<EOC
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Test</title>
</head>
<body>
<p>Find me!</p>
<p>
<br />
Find me!
<br />
</p>
</body>
</html>
EOC;
$xml = simplexml_load_string($xhtml);
$xml->registerXPathNamespace('xhtml', 'http://www.w3.org/1999/xhtml');
$nodes = $xml->xpath("//*[contains(text(), 'Find me')]");
echo count($nodes);
Sortie prévue: 2 sortie réelle: 1
Quand je change l'xhtml du deuxième alinéa à
<p>
Find me!
<br />
</p>
il fonctionne comme prévu. Comment mon expression XPath doit-elle ressembler à tous les nœuds contenant 'Trouvez-moi', peu importe où ils se trouvent? L'utilisation de DOM-XML de PHP est une option, mais pas souhaitée.
Merci d'avance!
Merci, ça marche! – xlttj