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

gbot on 03/10/08


Tagged


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

gbot


String begins with


Published in: PHP 


  1. function strBeginsWith($string, $search) {
  2. return (strncmp($string, $search, strlen($search)) == 0);
  3. }

Report this snippet 

You need to login to post a comment.