summaryrefslogtreecommitdiff
path: root/Zend/tests/026.phpt
blob: b3088e84730429cfa29620ec51571cffc785178c (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
--TEST--
Trying assign value to property when an object is not returned in a function
--FILE--
<?php

class foo {
	public function a() {
	}
}

$test = new foo;

$test->a()->a;
print "ok\n";

$test->a()->a = 1;
print "ok\n";

?>
--EXPECTF--
Notice: Trying to get property 'a' of non-object in %s on line %d
ok

Warning: Creating default object from empty value in %s on line %d
ok