php-src/ext/simplexml/tests/bug62328.phpt
2020-08-09 22:03:36 +02:00

21 lines
447 B
PHP

--TEST--
Bug #62328 (implementing __toString and a cast to string fails)
--SKIPIF--
<?php if (!extension_loaded("simplexml")) print "skip"; ?>
--FILE--
<?php
class UberSimpleXML extends SimpleXMLElement {
public function __toString() {
return 'stringification';
}
}
$xml = new UberSimpleXML('<xml/>');
var_dump((string) $xml);
var_dump($xml->__toString());
?>
--EXPECT--
string(15) "stringification"
string(15) "stringification"