-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/Zend/tests/
File Upload :
Current File : //usr/src/php/Zend/tests/026.phpt

--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 of non-object in %s on line %d
ok

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

Copyright © 2017 || Recoded By Mr.Bumblebee