Return to Snippet

Revision: 51442
at September 24, 2011 13:36 by william0760


Initial Code
function str_startsWith($haystack, $needle) {
  return strpos($haystack, $needle) === 0;
}

function str_endsWith($haystack, $needle){
    return strrpos($haystack, $needle) === strlen($haystack)-strlen($needle);
}

function str_contains($haystack, $needle) {
  return strpos($haystack, $needle) !== false;
}

Initial URL


Initial Description
startsWith, endsWith, Contains

Initial Title
String Contains

Initial Tags


Initial Language
PHP