stancell on 04/21/08
Last Edited at 04/21/08 12:50pm
function string_begins_with($string, $search){ return (strncmp($string, $search, strlen($search)) == 0);} .
Report this snippet Tweet
Comment:
You need to login to post a comment.