Logo

Programming-Idioms

History of Idiom 112 > diff from v18 to v19

Edit summary for version 19 by ricardo_sdl:
New PHP implementation by user [ricardo_sdl]

Version 18

2018-08-03, 21:23:49

Version 19

2018-08-29, 18:44:25

Idiom #112 Iterate over map entries, ordered by keys

Print each key k with its value x from an associative array mymap, in ascending order of k.

Idiom #112 Iterate over map entries, ordered by keys

Print each key k with its value x from an associative array mymap, in ascending order of k.

Extra Keywords
traverse traversal
Extra Keywords
traverse traversal
Code
ksort($mymap);
foreach($mymap as $k => $v) {
    echo 'k:', $k, ' ', 'v:', $v, PHP_EOL;
}
Doc URL
https://secure.php.net/manual/en/function.ksort.php
Demo URL
https://3v4l.org/SVfFm