foreach ($array as $key => $value){ echo "$key => $value\n"; }
$array = array( 1 => 'bir', 2 => 'iki', 3 => 'üç' ); echo $array[3];