Skip to content

Instantly share code, notes, and snippets.

@litefeel
Last active August 29, 2015 14:15
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 litefeel/e5509603946a6094929f to your computer and use it in GitHub Desktop.
Save litefeel/e5509603946a6094929f to your computer and use it in GitHub Desktop.
php string function
function start_with($main_str, $str) {
return substr_compare($main_str, $str, 0, strlen($str)) === 0;
}
function end_with($main_str, $str) {
return substr_compare($main_str, $str, -1, strlen($str)) === 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment