数组去重

2018-07-25  本文已影响4人  CaptainRoy
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;
}
上一篇下一篇

猜你喜欢

热点阅读