fork download
  1. <?php
  2.  
  3. $re = '/access":"(.*?)","machine/';//'/access":"(.*?)","machine/';
  4. $str = 'access":"YOU HAVE 0 BALANCE","machine';
  5. if (preg_match($re, $str, $matches)) {
  6. print_r($matches[1]);
  7. }
Success #stdin #stdout 0s 82944KB
stdin
Standard input is empty
stdout
YOU HAVE 0 BALANCE