ru_php/Zend/tests/inheritance/inherit_internal_static.phpt

19 lines
265 B
PHP

--TEST--
Inherit internal static property into userland class
--EXTENSIONS--
zend_test
--FILE--
<?php
class Test extends _ZendTestClass {
}
var_dump(Test::$_StaticProp);
_ZendTestClass::$_StaticProp = 42;
var_dump(Test::$_StaticProp);
?>
--EXPECT--
NULL
int(42)