I have a large binary number stored as a string in a variable. Something like this :
10111100100001010101010101010100000111111111001010101...
I want to split it in chunks of 8, so I use this : chunk_split($text, 8);
but chunk_split() returns a string.
How do I store all the chunks in an array ?