Rate this script:  I Love it  /   I Hate it

Check whether string begins with given string


Code


function string_begins_with($string, $search)
{
    return (strncmp($string, $search, strlen($search)) == 0);
}
 

 

 
Check whether string begins with given string scripts | Check whether string begins with given string snippet | Check whether string begins with given string example | Check whether string begins with given string tutorial | Check whether string begins with given string code