--TEST-- Bug #39662 (Segfault when calling asXML() of a cloned SimpleXMLElement) --SKIPIF-- --FILE-- '; $root = simplexml_load_string($xml); $clone = clone $root; var_dump($root); var_dump($clone); var_dump($clone->asXML()); echo "Done\n"; ?> --EXPECTF-- object(SimpleXMLElement)#%d (1) { [0]=> string(2) " " } object(SimpleXMLElement)#%d (1) { [0]=> string(2) " " } string(15) " " Done