ksort php code example
Example 1: php sort array by key
$weight = [
'Pete' => 75,
'Benjamin' => 89,
'Jonathan' => 101
];
ksort($weight);
Example 2: how to cheeck php
<?phpphpinfo(); ?>
Example 3: php rtrim
$colors=trim("blue,red,green,",",");//remove last , with rtrim
Example 4: usort in php
<?php
function my_sort($a,$b)
{
if ($a==$b) return 0;
return ($a<$b)?-1:1;
}
$a=array(4,2,8,6);
usort($a,"my_sort");
?>