fork(2) download
  1. <?php
  2.  
  3. $text = "8 923 8987888";
  4. $regexp = '/^(7|8)([ ]|[-]|[(])([0-9]{3})([ ]|[-]|[)])([0-9]{7})$/';
  5. $regexp2 = '/^(7|8)([0-9]{3})([0-9]{7})$/';
  6. if ((preg_match($regexp,$text))or((preg_match($regexp2,$text)))){
  7. echo "Все заебок";
  8. }
  9. else{
  10. echo "написал какую то дичь";
  11. }
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
Все заебок