Can anyone help me? I want to convert a word to an array.
example:
$word = "hello"
and I want to convert it to an array like this:
$wordarray = ['h', 'e', 'l', 'l', 'o'];
The size of the array is automatically set by the length of the word
Is that possible?