php-src/Zend/tests/recursive_debug_info.phpt

20 lines
223 B
Plaintext
Raw Normal View History

--TEST--
Test recursive __debugInfo() method
--FILE--
<?php
class Test {
public function __debugInfo() {
return [$this];
}
}
var_dump(new Test);
?>
--EXPECT--
object(Test)#1 (1) {
[0]=>
*RECURSION*
}