Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

ksort

  • ksort
<?php
$a = array('two' => 2, 'one' => 1, 'three' => 3);

ksort($a);  # sort according to keys

while (list($key, $value) = each($a)) {
    print "$key   $value\n";
}

?>