Hi,
I'm trying to read this function taken from Php.net.
function array_key_intersect(&$a, &$b) {
$array = array();
while (list($key,$value) = each($a)) {
//if (isset($b[$key]))
$array[$key] = $value;
}
return $array;
}
Could someone explain the bolded line?