HomeWeb application programmingPHP programmingPHP syntax: sort an associative array by index keys

PHP syntax: sort an associative array by index keys

To sort an associative array by index values (or keys), use ksort.

ksort($capitals);

An optional parameter (sort_flags) can be passed to ksort to alter the way that it sorts the array. The following code will sort an associative array numerically by index.

ksort($ar, SORT_NUMERIC);

Without this option, the index values ’15, 2, 1′ would be sorted ‘1, 15, 2’ and with the SORT_NUMERIC option, the values would be sorted 1, 2, 15.

Quinn McHenry
Quinn McHenry
Quinn was one of the original co-founders of Tech-Recipes. He is currently crafting iOS applications as a senior developer at Small Planet Digital in Brooklyn, New York.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

LATEST REVIEWS

Recent Comments

error: Content is protected !!