Skip to content

Instantly share code, notes, and snippets.

@Gonzalo2683
Created June 2, 2020 03:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gonzalo2683/83eed539b66044400475d536d6dd0c3c to your computer and use it in GitHub Desktop.
Save Gonzalo2683/83eed539b66044400475d536d6dd0c3c to your computer and use it in GitHub Desktop.
[Php Utils] Funciones útiles #php
<?php
/*
Check if a string has accents
*/
function has_accent(string $string) {
$result = FALSE;
if (preg_match('/[\x80-\xff]/', $email)) {
$result = TRUE;
}
return $result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment