fork download
  1. <?php
  2.  
  3. $data = [12, 6, "Test", "AAA", "8"];
  4. sort($data);
  5. print_r($data);
Success #stdin #stdout 0.02s 23788KB
stdin
Standard input is empty
stdout
Array
(
    [0] => AAA
    [1] => Test
    [2] => 6
    [3] => 8
    [4] => 12
)