array(1) {
[0] => string(18) "AnotherTestSnippet"
}
array(1) {
[0] => string(17) "Test Code Snippet"
}
array(1) {
[0] => string(18) "AnotherTestSnippet"
}
array(1) {
[0] => string(17) "Test Code Snippet"
}
如何使用 PHP 将上述数组转换成这种格式?
array("AnotherTestSnippet","Test Code Snippet")
那就是清理和删除重复项。我试过 array_unique 和 in_array 但它不起作用。谢谢。