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