The $node parameter of DomDocument::saveHTML was added only in php version 5.3.6.
No problem, strip_tags gets out anything we don't want anyway.
This commit is contained in:
@@ -85,7 +85,7 @@ function get_body_length($body) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Now we can get the body of our HTML DomDocument, it contains only what is visible
|
// Now we can get the body of our HTML DomDocument, it contains only what is visible
|
||||||
$string = $dom->saveHTML($dom->getElementsByTagName('body')->item(0));
|
$string = $dom->saveHTML();
|
||||||
|
|
||||||
$string = strip_tags($string);
|
$string = strip_tags($string);
|
||||||
return strlen($string);
|
return strlen($string);
|
||||||
|
|||||||
Reference in New Issue
Block a user