-=[ Mr. Bumblebee ]=-
_Indonesia_
| Path : /usr/src/php/tests/classes/ |
|
|
| Current File : //usr/src/php/tests/classes/static_properties_003_error2.phpt |
--TEST--
Attempting to access static properties using instance property syntax
--FILE--
<?php
class C {
protected static $y = 'C::$y';
}
$c = new C;
echo "\n--> Access non-visible static prop like instance prop:\n";
echo $c->y;
?>
==Done==
--EXPECTF--
--> Access non-visible static prop like instance prop:
Fatal error: Cannot access protected property C::$y in %s on line 8
Copyright © 2017 || Recoded By Mr.Bumblebee