Show Output
"Apple", 5 => "Ball", 11 => "Cat"); echo current($arr) . "
"; // Outputs: Apple echo reset($arr) . "
"; // Outputs: Apple echo next($arr) . "
"; // Outputs: Ball echo current($arr) . "
"; // Outputs: Ball echo reset($arr) . "
"; // Outputs: Apple ?>