I need to figure out a method using PHP to chunk the 1’s and 0’s into sections. 1001 would look like: array(100,1) 1001110110010011 would look like: array(100,1,1,10,1,100,100,1,1) It gets …
I need to figure out a method using PHP to chunk the 1’s and 0’s into sections. 1001 would look like: array(100,1) 1001110110010011 would look like: array(100,1,1,10,1,100,100,1,1) It gets …