Tools, FAQ, Tutorials:
Sorting an Array by Keys in PHP
How To Sort an Array by Keys in PHP?
✍: FYIcenter.com
Sorting an array by keys can be done by using the ksort() function. It will re-order all pairs of keys and values based on the alphanumeric order of the keys. Here is a PHP script on how to use ksort():
<?php $mixed = array(); $mixed["Zero"] = "PHP"; $mixed[1] = "Perl"; $mixed["Two"] = "Java"; $mixed["3"] = "C+"; $mixed[""] = "Basic"; $mixed[] = "Pascal"; $mixed[] = "FORTRAN"; ksort($mixed); print("Sorted by keys:\n"); print_r($mixed); ?>
This script will print:
Sorted by keys: Array ( [] => Basic [Two] => Java [Zero] => PHP [1] => Perl [3] => C+ [4] => Pascal [5] => FORTRAN )
⇒ Sorting an Array by Values in PHP
⇐ Retrieving All Values from an Array in PHP
2017-01-21, 1642👍, 0💬
Popular Posts:
How to use the "send-one-way-request" Policy statement to call an extra web service for an Azure API...
How to troubleshoot the Orderer peer? The Docker container terminated by itself. You can follow this...
dev.FYIcenter.com is a Website for software developer looking for software development technologies,...
How to install .NET Framework in Visual Studio Community 2017? I have the Visual Studio Installer in...
How to extend json.JSONEncoder class? I want to encode other Python data types to JSON. If you encod...