Warning: DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity,
Solution 1:
To evaporate the warning, you can use libxml_use_internal_errors(true)
// create new DOMDocument
$document = new \DOMDocument('1.0', 'UTF-8');
// set error level
$internalErrors = libxml_use_internal_errors(true);
// load HTML
$document->loadHTML($html);
// Restore error level
libxml_use_internal_errors($internalErrors);
Solution 2:
I would bet that if you looked at the source of http://www.somesite.com/
you would find special characters that haven't been converted to HTML. Maybe something like this:
<a href="/script.php?foo=bar&hello=world">link</a>
Should be
<a href="/script.php?foo=bar&hello=world">link</a>
Solution 3:
$dom->@loadHTML($html);
This is incorrect, use this instead:
@$dom->loadHTML($html);