fork(2) download
  1. <?php
  2.  
  3. $text = 'бла бла бла трaляля';
  4. $ragexp = '!([а-бА-ЯёЁ]+)([a-zA-z]+)([а-бА-ЯёЁ]+)!ui';
  5. $matches = array();
  6. $matches2 = array();
  7.  
  8.  
  9. $count = preg_match_all($ragexp, $text, $matches);
  10. echo "Найдено ошибочных слов: {$count}\n";
  11. $matches2 = $matches[0];
  12. var_dump($matches2);
  13. $word = implode ($matches2[0]); //чтоо??
  14. echo "{$word}"; //чтоо??
Success #stdin #stdout #stderr 0.02s 24400KB
stdin
Standard input is empty
stdout
Найдено ошибочных слов: 1
array(1) {
  [0]=>
  string(13) "трaляля"
}
stderr
PHP Warning:  implode(): Argument must be an array in /home/T1QkvF/prog.php on line 13