fork(1) download
  1. <?php
  2. function Grammar ($text) {
  3. $regexp = '/жы|шы/u';
  4. if (preg_match($regexp , $text)){
  5. echo "Внимание, обнаружена ошибка!";
  6. }
  7. else {
  8. echo "Ошибок не обнаружено.";
  9. }
  10.  
  11. }
  12. Grammar ('жы шы пиши с буквой и');
Success #stdin #stdout 0.01s 24144KB
stdin
Standard input is empty
stdout
Внимание, обнаружена ошибка!