Skip to content

Instantly share code, notes, and snippets.

@johnabela
Last active February 22, 2017 18:33
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 johnabela/292e198396234b03461501cdce9d2d8f to your computer and use it in GitHub Desktop.
Save johnabela/292e198396234b03461501cdce9d2d8f to your computer and use it in GitHub Desktop.
[PHP] Are All Characters Identical?
$word = 'dddddd';
if (empty(str_replace(mb_substr(trim($word),-1),'',trim($word)))) {
die('all the characters are identical');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment