1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/spl/tests/SplObjectStorage/SplObjectStorage_var_dump.phpt
2024-03-17 23:08:47 +00:00

25 lines
366 B
PHP

--TEST--
SPL: SplObjectStorage: recursive var_dump
--FILE--
<?php
$o = new SplObjectStorage();
$o[new StdClass] = $o;
var_dump($o);
?>
--EXPECTF--
object(SplObjectStorage)#%d (1) {
["storage":"SplObjectStorage":private]=>
array(1) {
[0]=>
array(2) {
["obj"]=>
object(stdClass)#%d (0) {
}
["inf"]=>
*RECURSION*
}
}
}