這是一個問題。 我正在用數組中的新行爆炸一個字符列表。並做它獨特的數組。但它沒有按預期工作。下面 是代碼:array_unique在php中無法正常工作
$list = "test
ok
test
test
ok
ok
test";
$list_explode = explode("\n", $list); //exploding the characters of the list from the input
//displaying unique
array_map('trim', $list_explode);
$result = array_unique($list_explode);
print_r($result);
結果是
Array ([0] => test [1] => ok [6] => test)
使用'var_dump',而不是'print_r'。它會告訴你這些字符串是不同的。 – hakre