php-src/Zend/tests/objects_017.phpt

22 lines
317 B
Plaintext
Raw Normal View History

2008-03-11 23:21:38 +08:00
--TEST--
Testing visibility of object returned by function
--FILE--
<?php
class foo {
2020-02-04 05:52:20 +08:00
private $test = 1;
2008-03-11 23:21:38 +08:00
}
function test() {
2020-02-04 05:52:20 +08:00
return new foo;
2008-03-11 23:21:38 +08:00
}
test()->test = 2;
?>
--EXPECTF--
Fatal error: Uncaught Error: Cannot access private property foo::$test in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d