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