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/Zend/tests/traits/ |
Current File : //usr/local/src/php7/php-7.0.5/Zend/tests/traits/property002.phpt |
--TEST-- Non-conflicting properties should work just fine. --FILE-- <?php error_reporting(E_ALL); trait THello1 { public $hello = "hello"; } trait THello2 { private $world = "World!"; } class TraitsTest { use THello1; use THello2; function test() { echo $this->hello . ' ' . $this->world; } } var_dump(property_exists('TraitsTest', 'hello')); var_dump(property_exists('TraitsTest', 'world')); $t = new TraitsTest; $t->test(); ?> --EXPECTF-- bool(true) bool(true) hello World!
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare