You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
254 B

--TEST--
Testing visibility of object returned by function
--FILE--
<?php
class foo {
private $test = 1;
}
function test() {
return new foo;
}
test()->test = 2;
?>
--EXPECTF--
Fatal error: Cannot access private property foo::$test in %s on line %d