File: 033.phpt

package info (click to toggle)
php-msgpack 2.0.2%2B0.5.7-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,192 kB
  • ctags: 729
  • sloc: ansic: 6,789; xml: 702; php: 18; makefile: 1
file content (55 lines) | stat: -rw-r--r-- 965 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
--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