欢迎光临
我们一直在努力

php7.2 废弃each方法

<?php
$b = array();
each($b);
 
// Deprecated:  The each() function is deprecated. This message will be suppressed on further calls

each方法替换为

function fun_adm_each(&$array){
   $res = array();
   $key = key($array);
   if($key !== null){
       next($array); 
       $res[1] = $res['value'] = $array[$key];
       $res[0] = $res['key'] = $key;
   }else{
       $res = false;
   }
   return $res;
}
赞(0)
版权归原作者所有,如有侵权请告知。达维营-前端网 » php7.2 废弃each方法

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址