美文网首页
数组去重

数组去重

作者: CaptainRoy | 来源:发表于2018-07-25 17:41 被阅读4次
    • 自定义函数实现数组去重 $a = [1, 3, 5, 1, 5, 9];
    function uniqueArray($arr)
    {
        $result = [];
        $aLength = count($arr);
    
        for ($i = 0; $i < $aLength; $i++) {
            $isExit = false;
            $rLength = count($result);
            if ($rLength == 0) {
                $result[] = $arr[$i];
            } else {
                for ($j = 0; $j < $rLength; $j++) {
                    if ($arr[$i] == $result[$j]) {
                        $isExit = true;
                        break;
                    }
                }
                if ($isExit == false) {
                    $result[] = $arr[$i];
                }
            }
        }
        return $result;
    }
    

    相关文章

      网友评论

          本文标题:数组去重

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