summaryrefslogtreecommitdiff
path: root/Zend/tests/bug75921.phpt
blob: 917dd413cc2e82ba324f810ffeb80a3f942d3337 (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
73
74
75
76
77
78
79
80
--TEST--
Bug #75921: Inconsistent error when creating stdObject from empty variable
--FILE--
<?php

$null->a = 42;
var_dump($null);
unset($null);

$null->a['hello'] = 42;
var_dump($null);
unset($null);

$null->a->b = 42;
var_dump($null);
unset($null);

$null->a['hello']->b = 42;
var_dump($null);
unset($null);

$null->a->b['hello'] = 42;
var_dump($null);
unset($null);

?>
--EXPECTF--
Warning: Creating default object from empty value in %sbug75921.php on line 3
object(stdClass)#1 (1) {
  ["a"]=>
  int(42)
}

Warning: Creating default object from empty value in %sbug75921.php on line 7
object(stdClass)#1 (1) {
  ["a"]=>
  array(1) {
    ["hello"]=>
    int(42)
  }
}

Warning: Creating default object from empty value in %sbug75921.php on line 11

Warning: Creating default object from empty value in %sbug75921.php on line 11
object(stdClass)#1 (1) {
  ["a"]=>
  object(stdClass)#2 (1) {
    ["b"]=>
    int(42)
  }
}

Warning: Creating default object from empty value in %sbug75921.php on line 15

Warning: Creating default object from empty value in %sbug75921.php on line 15
object(stdClass)#1 (1) {
  ["a"]=>
  array(1) {
    ["hello"]=>
    object(stdClass)#2 (1) {
      ["b"]=>
      int(42)
    }
  }
}

Warning: Creating default object from empty value in %sbug75921.php on line 19

Warning: Creating default object from empty value in %sbug75921.php on line 19
object(stdClass)#1 (1) {
  ["a"]=>
  object(stdClass)#2 (1) {
    ["b"]=>
    array(1) {
      ["hello"]=>
      int(42)
    }
  }
}