fork(2) download
  1. <?php
  2.  
  3. $r = preg_match('/exhid=([^\\\]+)/', 'exhid=234sdsdg.\sdg', $m);
  4.  
  5. var_dump($r, $m);
  6.  
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
int(1)
array(2) {
  [0]=>
  string(15) "exhid=234sdsdg."
  [1]=>
  string(9) "234sdsdg."
}