Given a string and we have to convert it into a character array.
Example:
Input:
"WubbalubbaDubDub"
Output:
Array
(
[0] => W
[1] => u
[2] => b
[3] => b
[4] => a
[5] => l
[6] => u
[7] => b
[8] => b
[9] => a
[10] => D
[11] => u
[12] => b
[13] => D
[14] => u
[15] => b
)
PHP code to convert string to the character array
Output
Explanation:
We use the PHP str_split() function to split individual characters from a string into a character array. The string ($input) is split into individual characters and stored into ($output) and then printed as an array using the print_r() function.
need an explanation for this answer? contact us directly to get an explanation for this answer