mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
19 lines
387 B
PHP
19 lines
387 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";
|
|
$c->y =& $ref;
|
|
?>
|
|
==Done==
|
|
--EXPECTF--
|
|
|
|
--> Access non-visible static prop like instance prop:
|
|
|
|
Fatal error: Cannot access protected property C::$y in %s on line 8
|