I have a string, how do I convert it to an array?
After manipulating that array, how do I again make it into a string?
Do strings in PHP behave the same way
in php you can use:
split like
Description
array split ( string $pattern , string $string [, int $limit ] )
Splits a string into array by regular expression.
or
implode