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/dereference_003.phpt |
--TEST-- Testing array dereference on method calls --FILE-- <?php error_reporting(E_ALL); class foo { public $x = 2; public function a() { $x = array(); $x[] = new foo; return $x; } public function b() { return array(1.2, array(new self)); } public function c() { $a = array(); $b = &$a; $b[] = true; return $a; } public function d() { return $this->b(); } } $foo = new foo; var_dump($foo->a()[0]->x); var_dump($foo->a()[0]); var_dump($foo->b()[1][0]->a()[0]->x); var_dump($foo->c()[0]); var_dump($foo->d()[0]); ?> --EXPECTF-- int(2) object(foo)#%d (1) { ["x"]=> int(2) } int(2) bool(true) float(1.2)
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare