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/bug28072.phpt |
--TEST-- Bug #28072 (static array with some constant keys will be incorrectly ordered) --FILE-- <?php define("FIRST_KEY", "a"); define("THIRD_KEY", "c"); function test() { static $arr = array( FIRST_KEY => "111", "b" => "222", THIRD_KEY => "333", "d" => "444" ); print_r($arr); } function test2() { static $arr = array( FIRST_KEY => "111", "a" => "222", "c" => "333", THIRD_KEY => "444" ); print_r($arr); } test(); test2(); ?> --EXPECT-- Array ( [a] => 111 [b] => 222 [c] => 333 [d] => 444 ) Array ( [a] => 222 [c] => 444 )
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare