What will this code output?
$keys = range(1, 6, 2); $arr = array_fill_keys($keys, 'PHP'); krsort($arr); $arr = array_flip($arr); echo $arr['PHP'];