Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/ext/reflection/tests/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/reflection/tests/bug30148.phpt |
--TEST-- Reflection Bug #30148 (ReflectionMethod->isConstructor() fails for inherited classes) --FILE-- <?php class Root { function Root() {} } class Base extends Root { function __construct() {} } class Derived extends Base { } $a = new ReflectionMethod('Root','Root'); $b = new ReflectionMethod('Base','Root'); $c = new ReflectionMethod('Base','__construct'); $d = new ReflectionMethod('Derived','Root'); $e = new ReflectionMethod('Derived','__construct'); var_dump($a->isConstructor()); var_dump($b->isConstructor()); var_dump($c->isConstructor()); var_dump($d->isConstructor()); var_dump($e->isConstructor()); ?> ===DONE=== --EXPECTF-- Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Root has a deprecated constructor in %s on line %d bool(true) bool(false) bool(true) bool(false) bool(true) ===DONE===
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare