fork(1) download
  1. <?php
  2.  
  3.  
  4. $string = '89114332112';
  5.  
  6. $reguexp = '/^(?"?8-?911)?"?-?(?"?[0-9]-?[0-9]-?[0-9]"?)?-?(?"?[0-9]-?[0-9]-?[0-9]-?)?"?[0-9])?"?-?$/';
  7.  
  8. if (preg_match($reguexp, $string)){
  9. echo "Вы ввели правильный номер";
  10. } else {
  11. echo "Введите номер ввиде: 8911XXXXXXX";
  12. }
  13. ?>
Success #stdin #stdout #stderr 0.01s 20520KB
stdin
Standard input is empty
stdout
Введите номер ввиде: 8911XXXXXXX
stderr
PHP Warning:  preg_match(): Compilation failed: unrecognized character after (? or (?- at offset 3 in /home/FH90KH/prog.php on line 10