fork(3) download
  1. <?php
  2.  
  3. $string = "atm123456";
  4. $pattern = "(atm\d+)";
  5. preg_match($pattern, $string, $matches);
  6. print_r($matches);
  7.  
  8. ?>
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
Array
(
    [0] => atm123456
)