HEX
Server: Apache/2.4.41 (Amazon) OpenSSL/1.0.2k-fips PHP/5.6.40
System: Linux ip-172-31-40-18 4.14.146-93.123.amzn1.x86_64 #1 SMP Tue Sep 24 00:45:23 UTC 2019 x86_64
User: apache (48)
PHP: 5.6.40
Disabled: NONE
Upload Files
File: //usr/share/pear/test/igbinary/tests/tests/igbinary_033.phpt
--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;
	}
}

$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