Replacing Substrings: string substr_replace ( string str, string replacmnt, int start [, int len] )
<?php
$mystring = substr_replace("Hello World", "asdf", 0, 0);
echo $mystring . "<br />";
$mystring = substr_replace("Hello World", "0 w0", 4, 4);
echo $mystring;
?>
Related examples in the same category