fork download
  1. <?php
  2. $a = [1,2,3];
  3. $l = count($a);
  4. for($i = $l-1; $i>=0; $i--)
  5. echo $a[$i];
  6.  
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
321