Pages

PHP - Sort Functions For Arrays

PHP - Sort Functions For Arrays

In this chapter, we will go through the following PHP array sort functions:

  • sort() - sort arrays in ascending order



Sort Array in Ascending Order - sort()

The following example sorts the elements of the $cars array in ascending alphabetical order:

Example

<?php
$cars=array("Volvo","BMW","Toyota");
sort($cars);
?>


Example Download !

No comments:

Flag Counter
| Copyright © 2013 Remote Tutor