mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
49 lines
1.0 KiB
PHP
49 lines
1.0 KiB
PHP
--TEST--
|
|
ZE2 Late Static Binding properties and methods declared as public and overridden as public.
|
|
--FILE--
|
|
<?php
|
|
class TestClass {
|
|
public static $staticVar;
|
|
|
|
public static function staticFunction() {
|
|
return 'TestClassFunction';
|
|
}
|
|
|
|
public static function testStaticVar() {
|
|
TestClass::$staticVar = 'TestClassStatic';
|
|
ChildClass1::$staticVar = 'ChildClassStatic';
|
|
return static::$staticVar;
|
|
}
|
|
|
|
public static function testStaticFunction() {
|
|
return static::staticFunction();
|
|
}
|
|
}
|
|
|
|
class ChildClass1 extends TestClass {
|
|
public static $staticVar;
|
|
|
|
public static function staticFunction() {
|
|
return 'ChildClassFunction';
|
|
}
|
|
}
|
|
|
|
class ChildClass2 extends TestClass {}
|
|
|
|
echo TestClass::testStaticVar() . "\n";
|
|
echo TestClass::testStaticFunction() . "\n";
|
|
|
|
echo ChildClass1::testStaticVar() . "\n";
|
|
echo ChildClass1::testStaticFunction() . "\n";
|
|
|
|
echo ChildClass2::testStaticVar() . "\n";
|
|
echo ChildClass2::testStaticFunction() . "\n";
|
|
?>
|
|
--EXPECTF--
|
|
TestClassStatic
|
|
TestClassFunction
|
|
ChildClassStatic
|
|
ChildClassFunction
|
|
TestClassStatic
|
|
TestClassFunction
|