How to convert array to string in php?
With the help of implode() function in PHP, we can convert arrays into strings. It returns the string.
implode(separator,array);
BY Best Interview Question ON 18 Aug 2020
Example
$arr = array("Best", "Interview", "Question");
echo implode(" ",$arr);
OUTPUT
Best Interview Question