Skip to content

Instantly share code, notes, and snippets.

@toledorobia
Created January 5, 2018 15:24
Show Gist options
  • Save toledorobia/a7658568574ab9f1be458afc2c090870 to your computer and use it in GitHub Desktop.
Save toledorobia/a7658568574ab9f1be458afc2c090870 to your computer and use it in GitHub Desktop.
PHP - Ends with
<?php
function ends_with($haystack, $needle) {
return $needle === "" || substr($haystack, -strlen($needle)) === $needle;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment