fork download
  1. <?php
  2.  
  3. '-text-',
  4. 'foo bar text dididi text fofofo',
  5. $matches,
  6. PREG_PATTERN_ORDER
  7. );
  8.  
  9. print_r( $matches );
  10.  
Success #stdin #stdout 0.01s 52488KB
stdin
Standard input is empty
stdout
Array
(
    [0] => Array
        (
            [0] => text
            [1] => text
        )

)