I have the following code:
$doc = new DOMDocument();
$doc->loadHTML($quiz['value']);
$imageElement = $doc->getElementsByTagName('img')->item(0);
}
if(is_object($imageElement)){
$image = $imageElement->getAttribute('src');
$imageElement->parentNode->removeChild($imageElement);
}else{
$image = '#';
}
$quiz['value'] = $doc->saveHTML();
However, I get the following error: Fatal error: Call to a member function removeChild() on a non-object.
The loaded dom string may or may not contain an img element. Does anybody know what I'm doing wrong here? Any help is greatly appreciated!
$imageElement->parentNodeis not an object. Make sure it is and the error will go away. – Gordon Oct 9 '11 at 16:51