22 lines
436 B
PHP
22 lines
436 B
PHP
--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";
|
|
try {
|
|
$c->y =& $ref;
|
|
} catch (Error $e) {
|
|
echo $e, "\n";
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
--> Access non-visible static prop like instance prop:
|
|
Error: Cannot access protected property C::$y in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|