foreach ($array as $key => $value){
  echo "$key => $value\n";
}
veya

$array = array( 
1 => 'bir', 
2 => 'iki', 
3 => 'üç' 
);

echo $array[3];