fork download
  1. <?php
  2. $array = Array(0 => "hello", "w" => "orld");
  3. echo reset($array);
  4. // Output: "hello"
  5. ?>
Success #stdin #stdout 0.02s 13064KB
stdin
Standard input is empty
stdout
    hello