fork download
  1. <?php
  2.  
  3. // NOTE: array of sample input strings to demonstrate
  4. $inputs = array(
  5. 'my_fiancée', // match expected
  6. 'über', // match expected
  7. 'my_bloody_valentine', // match expected
  8. '"ABC, Easy as 123!"', // match expected
  9. 'whocares@whocares.com', // match NOT expected
  10. "'foo'", // match expected
  11. 'bar?'); // match NOT expected
  12.  
  13. foreach($inputs as $input) {
  14. if (!preg_match("/^[\pL0-9_.,!\"' ]+$/u", $input)) {
  15. // ^
  16. echo "\"$input\" => error\r\n"; // FORNOW: to explicitly note non-matches
  17. //echo 'error';
  18. } else { // FORNOW: else to explicitly indicate matches
  19. echo "\"$input\" => all good\r\n";
  20. }
  21. }
  22.  
  23. ?>
Success #stdin #stdout 0.02s 24144KB
stdin
Standard input is empty
stdout
"my_fiancée" => all good
"über" => all good
"my_bloody_valentine" => all good
""ABC, Easy as 123!"" => all good
"whocares@whocares.com" => error
"'foo'" => all good
"bar?" => error