����JFIF��� ( %"1"%)+...383,7(-.- 404 Not Found
Sh3ll
OdayForums


Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20
System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64
User : apache ( 48)
PHP Version : 7.4.20
Disable Function : NONE
Directory :  /proc/self/root/usr/share/tests/pecl/igbinary/tests/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/self/root/usr/share/tests/pecl/igbinary/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;
	}
}
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

ZeroDay Forums Mini