数组去重
2018-07-25 本文已影响4人
CaptainRoy
- 自定义函数实现数组去重 $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;
}