PHP 7.3关于count(), each()的异常解决.

2019-01-18 15:00:47 浏览数 (1)

代码语言:php复制
Warning: count(): Parameter must be an array or an object that implements Countable
Deprecated: The each() function is deprecated. This message will be suppressed on further calls

这两函数在php7.3开始出现兼容问题, 为了更好的支持函数调用. 我们需要重写这两个函数.

代码语言:javascript复制
function fun_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;
}

function fun_count($array_or_countable,$mode = COUNT_NORMAL){
    $res = 0;
    if(is_array($array_or_countable) || is_object($array_or_countable)){
        $res = count($array_or_countable, $mode);
    }
    return $res;
}

使用方法跟旧函数一模一样, 本次解决方案目的是为了让过程不报错而已. 参考一下吧.

0 人点赞