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/indirect_call_array_004.phpt |
--TEST-- Indirect method call by array - Testing exception and method magics --FILE-- <?php class foo { static public function abc() { throw new Exception('foo'); } public function __call($a, $b) { printf("From %s:\n", __METHOD__); throw new Exception($a); } static public function __callStatic($a, $b) { printf("From %s:\n", __METHOD__); throw new Exception($a); } } $arr = array('foo', 'abc'); try { $arr(); } catch (Exception $e) { echo $e->getMessage(), "\n"; } $arr = array('foo', '123'); try { $arr(); } catch (Exception $e) { echo $e->getMessage(), "\n"; } echo "------\n"; $foo = new foo; $arr = array($foo, 'abc'); try { $arr(); } catch (Exception $e) { echo $e->getMessage(), "\n"; } $foo = new foo; $arr = array($foo, '123'); try { $arr(); } catch (Exception $e) { echo $e->getMessage(), "\n"; } ?> --EXPECTF-- foo From foo::__callStatic: 123 ------ foo From foo::__call: 123
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare