Answers for "php sort array by number"

PHP
1

php sort hight to low

$letters=array("b","a","c");
arsort($letters); //referse sort an array ("c","a","b")
Posted by: Guest on December-05-2020
0

php rearrange array

function rearrange_array($array, $key) {
    while ($key > 0) {
        $temp = array_shift($array);
        $array[] = $temp;
        $key--;
    }
    return $array;
}
Posted by: Guest on November-19-2020

Browse Popular Code Answers by Language