"apple", "b"=>"ball", "c"=>"cat", "d"=>"dog"); // Getting the element's values echo current($alphabets) . ""; // Prints: apple echo next($alphabets) . ""; // Prints: ball echo reset($alphabets) . ""; // Prints: apple // Getting the first element's key echo key($alphabets); // Prints: a ?>