Source Code:
(back to article)
<?php $string = "The quick brown fox jumps over the lazy dog."; $new_string = str_replace("brown", "red", $string); echo $new_string; // Output: The quick red fox jumps over the lazy dog. ?>
Result:
Report an issue