Skip to content

Instantly share code, notes, and snippets.

@ryanburnette
Last active April 20, 2017 16:27
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 ryanburnette/fff3f2b6868ced8fe7ef4796630ad68d to your computer and use it in GitHub Desktop.
Save ryanburnette/fff3f2b6868ced8fe7ef4796630ad68d to your computer and use it in GitHub Desktop.
Does this string end with punctuation?
<?php
function ends_with_punctuation($string) {
if ( preg_match("/[0-9.!?,;:]$/", $string) ) {
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment