Posts Tagged: hotshot


23
Jul 09

PHP Pop Quiz Hotshot

Without running it, what does this do?

function hmmm(){
	$i = 'a';
	$array = array();
	while($i != 'z'){
		$array[$i] = $i;
		$i++;
	}
	return $array;
}