We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

stancell on 04/21/08


Tagged

String begins starts


Versions (?)


Check whether string begins with given string


Published in: PHP 


  1. function string_begins_with($string, $search)
  2. {
  3. return (strncmp($string, $search, strlen($search)) == 0);
  4. }
  5.  
  6. .

Report this snippet 

You need to login to post a comment.