Showing posts with label sort(). Show all posts
Showing posts with label sort(). Show all posts
Difference between sort(), asort() and ksort in php
Posted by Raj
Difference between sort(), asort() and ksort in php
sort():
sorts an array by the values.
Syntax
sort(arr,type)
Example:
<?php
$arr = array("a" => "Blue", "b" => "White", "c" => "Orange");
sort($arr);
print_r($arr);
?>
Output:
Array
(
[0] => Blue
[1] => Orange
[2] => White
)