fork download
  1. <?php
  2.  
  3. $register_msg = ['ihc_error_please_write_yourname_in_english' => 'English, please!', 'ihc_error_no_vowels_found' => 'No vowels!' ];
  4. $value = 'SFGH';
  5.  
  6. $return = "";
  7. if (preg_match('/^[\x{0600}-\x{06FF}]*$/u', $value)){
  8. $return .= $register_msg['ihc_error_please_write_yourname_in_english'] . PHP_EOL;
  9. } else if (preg_match('~^[A-Za-z]+$~',$value) && !preg_match('~[eyuioa]~',$value)) {
  10. $return .= $register_msg['ihc_error_no_vowels_found'] . PHP_EOL;
  11. }
  12.  
  13. echo $return;
  14.  
Success #stdin #stdout 0.03s 23832KB
stdin
Standard input is empty
stdout
No vowels!