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/ReflectionClass_getConstants_basic.phpt |
--TEST-- ReflectionClass::getConstants() --FILE-- <?php class C { const a = 'hello from C'; } class D extends C { } class E extends D { } class F extends E { const a = 'hello from F'; } class X { } $classes = array('C', 'D', 'E', 'F', 'X'); foreach($classes as $class) { echo "Constants from class $class: \n"; $rc = new ReflectionClass($class); var_dump($rc->getConstants()); } ?> --EXPECTF-- Constants from class C: array(1) { ["a"]=> string(12) "hello from C" } Constants from class D: array(1) { ["a"]=> string(12) "hello from C" } Constants from class E: array(1) { ["a"]=> string(12) "hello from C" } Constants from class F: array(1) { ["a"]=> string(12) "hello from F" } Constants from class X: array(0) { }
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare