fork download
  1. <?php
  2. $a = ["09:00:00", "03:23:43", "05:35:52", "00:03:45", "10:43:34", "01:45:34"];
  3. sort($a);
  4. echo implode("\n", $a);
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
00:03:45
01:45:34
03:23:43
05:35:52
09:00:00
10:43:34