array_column 低版本兼容

Posted 一个永

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了array_column 低版本兼容相关的知识,希望对你有一定的参考价值。

function i_array_column($input, $columnKey, $indexKey=null){
    if(!function_exists(‘array_column‘)){ 
        $columnKeyIsNumber  = (is_numeric($columnKey))?true:false; 
        $indexKeyIsNull            = (is_null($indexKey))?true :false; 
        $indexKeyIsNumber     = (is_numeric($indexKey))?true:false; 
        $result                         = array(); 
        foreach((array)$input as $key=>$row){ 
            if($columnKeyIsNumber){ 
                $tmp= array_slice($row, $columnKey, 1); 
                $tmp= (is_array($tmp) && !empty($tmp))?current($tmp):null; 
            }else{ 
                $tmp= isset($row[$columnKey])?$row[$columnKey]:null; 
            } 
            if(!$indexKeyIsNull){ 
                if($indexKeyIsNumber){ 
                  $key = array_slice($row, $indexKey, 1); 
                  $key = (is_array($key) && !empty($key))?current($key):null; 
                  $key = is_null($key)?0:$key; 
                }else{ 
                  $key = isset($row[$indexKey])?$row[$indexKey]:0; 
                } 
            } 
            $result[$key] = $tmp; 
        } 
        return $result; 
    }else{
        return array_column($input, $columnKey, $indexKey);
    }
}

(本文复制自网络)

以上是关于array_column 低版本兼容的主要内容,如果未能解决你的问题,请参考以下文章

jquery不兼容低版本ie浏览器怎么解决?

兼容ie8,firefox,chrome浏览器的代码片段

兼容低版本 ie 的思路

兼容IE低版本的文件上传解决方案

片段在较低版本的android中无法正常工作

使用新标签兼容低版本IE