fork(1) download
  1. <?php
  2. $tel = array(
  3. "8-911-50-656-56",
  4. "89115065656",
  5. "8(911)-506 56 56",
  6. "02",
  7. "89115065656 позвать Люду");
  8. $regexp = "/[0-9](\s|\-|[(])*[0-9]{3}(\s|\-|[)])*[0-9]{2,3}(\-|\s)*[0-9]{2,3}(\-|\s)*[0-9]{2}/";
  9. for($i=0;$i<5;$i++){
  10. echo $tel[$i]."\n";
  11. if(preg_match($regexp,$tel[$i])){
  12. echo "Правильно\n";
  13. }else{
  14. echo "Не правильно\n";
  15. }
  16.  
  17.  
  18. }
  19. // your code goes here
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
8-911-50-656-56
Правильно
89115065656
Правильно
8(911)-506 56 56
Правильно
02
Не правильно
89115065656 позвать Люду
Правильно