summaryrefslogtreecommitdiff
path: root/ext/standard/tests/serialize/bug31402.phpt
blob: 4f8bf0ca5b6277e3d8862282ba68e76a4837f0ef (plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
--TEST--
Bug #31402 (unserialize() generates references when it should not)
--FILE--
<?php 

class X {
  var $i;

  function X($i) {
    $this->i = $i;
  }
}

class Y {
  var $A = array();
  var $B;

  function Y() {
    $this->A[1] = new X(1);
    $this->A[2] = new X(2);
    $this->B = $this->A[1];
  }
}

$before = new Y();
$ser = serialize($before);
$after = unserialize($ser);

var_dump($before, $after);

?>
--EXPECT--
object(y)(2) {
  ["A"]=>
  array(2) {
    [1]=>
    object(x)(1) {
      ["i"]=>
      int(1)
    }
    [2]=>
    object(x)(1) {
      ["i"]=>
      int(2)
    }
  }
  ["B"]=>
  object(x)(1) {
    ["i"]=>
    int(1)
  }
}
object(y)(2) {
  ["A"]=>
  array(2) {
    [1]=>
    &object(x)(1) {
      ["i"]=>
      int(1)
    }
    [2]=>
    object(x)(1) {
      ["i"]=>
      int(2)
    }
  }
  ["B"]=>
  &object(x)(1) {
    ["i"]=>
    int(1)
  }
}