fork download
  1. <?php
  2.  
  3. $re= '/[0-9]{1,2}\s?(лет)|(месяц)|(год)/ui';
  4. preg_match_all($re, $_GET[age], $preg);
  5.  
  6. var_dump ($preg[0]);
  7.  
  8. ?>
Success #stdin #stdout #stderr 0s 82944KB
stdin
Standard input is empty
stdout
array(0) {
}
stderr
PHP Notice:  Use of undefined constant age - assumed 'age' in /home/Nb5Y8t/prog.php on line 4
PHP Notice:  Undefined index: age in /home/Nb5Y8t/prog.php on line 4