fork(1) download
  1. <?php
  2.  
  3. preg_match('/.+/', 'hello.bye', $matches);
  4. print_r($matches);
Success #stdin #stdout 0.02s 82944KB
stdin
Standard input is empty
stdout
Array
(
    [0] => hello.bye
)