fork(2) download
  1. <?php
  2.  
  3. $s = "12345678";
  4. print_r(preg_split('~(?=\\G..)~', $s));
Success #stdin #stdout 0.01s 23968KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 
    [1] => 1
    [2] => 2
    [3] => 3
    [4] => 4
    [5] => 5
    [6] => 6
    [7] => 78
)