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.pull/69/head
parent
7b786e0214
commit
7f34be5a9a
|
@ -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
|
||||
$string = $dom->saveHTML($dom->getElementsByTagName('body')->item(0));
|
||||
$string = $dom->saveHTML();
|
||||
|
||||
$string = strip_tags($string);
|
||||
return strlen($string);
|
||||
|
|
Loading…
Reference in New Issue