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"
}
How to convert the above array into this format using PHP?
array("AnotherTestSnippet","Test Code Snippet")
That is cleaning up and removing the duplicates. I have tried array_unique and and in_array but it does not work. Thanks.