fork download
  1. <?php
  2.  
  3. // your code goes here
  4.  
  5. //preg_match_all("/[аеєиіїоуюя]/u", 'вввввааа', $matches);
  6. preg_match_all("/^[а-яА-ЯєЄЇїҐґь'-]+$/u", 'тест1', $matches);
  7. var_dump($matches);
Success #stdin #stdout 0.03s 26256KB
stdin
Standard input is empty
stdout
array(1) {
  [0]=>
  array(0) {
  }
}