这是一个问题。我正在按数组中的换行符分解字符列表。并在其上做唯一的数组。但它没有按预期工作。下面是代码:
$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 )