📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 12:13:48
📂
/ (Root)
/
opt
/
alt
/
tests
/
alt-php84-pecl-igbinary_3.2.16-3.el8
/
tests
📍 /opt/alt/tests/alt-php84-pecl-igbinary_3.2.16-3.el8/tests
🔄 Refresh
✏️
Editing: igbinary_033.phpt
Read Only
--TEST-- Object test, cyclic references --SKIPIF-- <?php if(!extension_loaded('igbinary')) { echo "skip no igbinary"; } --FILE-- <?php class Foo { public $parent; public $children; public function __construct() { $this->parent = null; $this->children = array(); } public function addChild(Foo $obj) { $this->children[] = $obj; $obj->setParent($this); } public function setParent(Foo $obj) { $this->parent = $obj; } } error_reporting(E_ALL); $obj1 = new Foo(); for ($i = 0; $i < 10; $i++) { $obj = new Foo(); $obj1->addChild($obj); } $o = igbinary_unserialize(igbinary_serialize($obj1->children)); foreach ($obj1->children as $k => $v) { $obj_v = $v; $o_v = $o[$k]; echo gettype($obj_v), "\t", gettype($o_v), "\n"; } --EXPECT-- object object object object object object object object object object object object object object object object object object object object
💾 Save Changes
❌ Cancel