📅  最后修改于: 2022-03-11 14:53:46.282000             🧑  作者: Mango
$array = array('a', 'b', 'c');
foreach ($array as $letter=>$index) {
echo $letter; //Here $letter content is the actual index
echo $array[$letter]; // echoes the array value
}//foreach