Open GoogleCodeExporter opened 8 years ago
$response = "<p>
The text node that I want
<span>The one I don't want</span>
Another text node that I want
</p>
";
$docHTML = phpQuery::newDocument($response);
phpQuery::selectDocument($docHTML);
$result = pq('p')->contents();
foreach($result as $node){
if($node->nodeType === 3) {
//remove empty lines
$textNode = trim($node->nodeValue);
if($textNode){
// display text in browser
echo "</br>" . $node->nodeValue ." </br>";
}
}
}
Original comment by moyar...@gmail.com
on 17 Sep 2013 at 5:12
this is the way to do this function but using your code (with filtering)
$response = "<p>
The text node that I want
<span>The one I don't want</span>
Another text node that I want
</p>
";
$docHTML = phpQuery::newDocument($response);
phpQuery::selectDocument($docHTML);
$result = pq('p')->contents()->filter(new Callback('filterTextNode'));
function filterTextNode($index, $node) {
return $node->nodeType === 3;
}
//display all the nodes in the browser
echo "</br>" . $result ." </br>";
//Loop through the nodes
foreach($result as $node){
//remove empty lines
$textNode = trim($node->nodeValue);
if($textNode){
// display text in browser
echo "</br>" . $node->nodeValue ." </br>";
}
}
Original comment by moyar...@gmail.com
on 17 Sep 2013 at 5:20
Original issue reported on code.google.com by
patrick....@gmail.com
on 5 May 2011 at 8:34