Sunday 8 June 2014

What is str_replace()

Definition-This function replace some characters with some other characters in a string , this function is case sensitive.

Syntax:- str_replace(find,replace,string);
                             find:-required,specifies the value to find.
                             replace:-required,specifies the value to replace the value in find.
                             string:-required,specifies the string to searched.
for examlpe:-
               <?php
                                 echo str_replace("amit","daniel","hello  amit");
                 ?>
 
Output:-     hello daniel












Posted by Amit Tiwari

No comments:

Post a Comment