    <?php
    $array = Array(0 => "hello", "w" => "orld");
    echo reset($array);
    // Output: "hello"
    ?>