美文网首页
php 通过键值去重

php 通过键值去重

作者: charmingcheng | 来源:发表于2018-10-09 13:59 被阅读0次
    function array_unset_tt($arr,$key){     
            //建立一个目标数组  
        $res = array();        
        foreach ($arr as $value) {           
           //查看有没有重复项  
           if(isset($res[$value[$key]])){  
                 //有:销毁  
                 unset($value[$key]);  
           }  
           else{    
                $res[$value[$key]] = $value;  
           }    
        }  
        return $res;  
    }  
    

    相关文章

      网友评论

          本文标题:php 通过键值去重

          本文链接:https://www.haomeiwen.com/subject/opkfnxtx.html