📜  php 在 foreach 中获取索引 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:46.282000             🧑  作者: Mango

代码示例1
$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