Answers for "sort if php"

PHP
3

sort array php

<?php
$fruits = array("d" => "lemon", "a" => "orange", "b" => "banana", "c" => "apple");
asort($fruits);
foreach ($fruits as $key => $val) {
    echo "$key = $valn";
}
?>
//Would output:
c = apple
b = banana
d = lemon
a = orange
Posted by: Guest on April-22-2020
-1

php sort

PHP function sort(array &$array, int $flags) bool
---------------------------------------------
Sort an array
  
Parameters:
array--$array--The input array.
int--$flags--[optional] The optional second parameter sort_flags may be used to modify the sorting behavior using these values. 
Sorting type flags: SORT_REGULAR - compare items normally (don't change types).

Returns: true on success or false on failure.
Posted by: Guest on September-11-2021

Browse Popular Code Answers by Language