How to convert the array to string in singel array
Below are the result of array
Array
(
[0] => Array
(
[0] => test
[1] => cate
[2] => category
)
)
I want the result to be
$availableTags = ["test","cate","category"];
How to do this in codeigniter php
No comments:
Post a Comment