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