Is it possible to take a string of text and put each character in an array?
yes
Well, although in PHP a string isnt quite an array of characters, you might as well access the characters like you would elements in an array.
However, instead of $array[$index], use $string{$index}
I'm making php code to interpret binary to a number 😃 .