fork(1) download
  1. <?php
  2.  
  3. $regex = "/^STEAM_0:[01]:[0-9]{7,8}$/";
  4. if(preg_match($regex, 'STEAM_0:1:38401525', $match))
  5. {
  6. echo 'OK'.PHP_EOL;
  7. print_r($match);
  8. } else {
  9. echo 'ERROR';
  10. }
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
OK
Array
(
    [0] => STEAM_0:1:38401525
)