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/ext/standard/tests/array/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/standard/tests/array/each_basic.phpt |
--TEST-- Test each() function : basic functionality --FILE-- <?php /* Prototype : array each(array $arr) * Description: Return the currently pointed key..value pair in the passed array, * and advance the pointer to the next element * Source code: Zend/zend_builtin_functions.c */ /* * Test basic functionality of each() */ echo "*** Testing each() : basic functionality ***\n"; $arr = array ('one' => 1, 'zero', 'two' => 'deux', 20 => 'twenty'); echo "\n-- Passed array: --\n"; var_dump($arr); echo "\n-- Initial position: --\n"; var_dump(each($arr)); echo "\n-- End position: --\n"; end($arr); var_dump(each($arr)); echo "\n-- Passed the end of array: --\n"; var_dump(each($arr)); echo "Done"; ?> --EXPECTF-- *** Testing each() : basic functionality *** -- Passed array: -- array(4) { ["one"]=> int(1) [0]=> string(4) "zero" ["two"]=> string(4) "deux" [20]=> string(6) "twenty" } -- Initial position: -- array(4) { [1]=> int(1) ["value"]=> int(1) [0]=> string(3) "one" ["key"]=> string(3) "one" } -- End position: -- array(4) { [1]=> string(6) "twenty" ["value"]=> string(6) "twenty" [0]=> int(20) ["key"]=> int(20) } -- Passed the end of array: -- bool(false) Done
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare