Files
RobinNixon 53063593e3 Final
Final
2020-12-10 13:51:13 +00:00

19 lines
561 B
PHP

<?php
$paper = array('copier' => "Copier & Multipurpose",
'inkjet' => "Inkjet Printer",
'laser' => "Laser Printer",
'photo' => "Photographic Paper");
while (list($item, $description) = myEach($paper))
echo "$item: $description<br>";
function myEach(&$array) // Replacement for the deprecated each function
{
$key = key($array);
$result = ($key === null) ? false :
[$key, current($array), 'key', 'value' => current($array)];
next($array);
return $result;
}
?>