Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一组花车。
当我使用 array_unique 时,如果我有一个 0 值,它将被排除在结果之外。
这是正确的,还是有办法解决这个问题?使它包含 0 的正确语法是什么。
提前致谢!
array_unique 函数在比较之前默认将数组的元素类型转换为字符串。
您可能想尝试:
array_unique($array, SORT_NUMERIC);
或者
array_unique($array, SORT_REGULAR);
http://php.net/manual/en/function.array-unique.php