当前位置:Gxlcms > PHP教程 > PHP数组根据值获取Key的简单示例

PHP数组根据值获取Key的简单示例

时间:2021-07-01 10:21:17 帮助过:16人阅读

  1. /**
  2. * 根据php数组的值获取Key
  3. * by bbs.it-home.org
  4. */
  5. function getKey($arr, $value) {
  6. if(!is_array($arr)) return null;
  7. foreach($arr as $k =>$v) {
  8. $return = getKey($v, $value);
  9. if($v == $value){
  10. return $k;
  11. }
  12. if(!is_null($return)){
  13. return $return;
  14. }
  15. }
  16. }

人气教程排行