fork(1) download
  1. <?php
  2.  
  3. preg_match_all("(.+)","ThisIsATest", $matches);
  4. print_r($matches);
Success #stdin #stdout 0.02s 24144KB
stdin
Standard input is empty
stdout
Array
(
    [0] => Array
        (
            [0] => ThisIsATest
        )

)