Answers for "Create a function with three parameters (text, letter, replacement), and you will find it in the text given by you in the text parameter letter that will be entered by you in the letter parameter and replaced with replacement parameter"

PHP
32

php replace

str_replace ($search, $replace, $subject);
Posted by: Guest on June-17-2019
2

php str replace

<?php
$string = str_ireplace("FoX", "CAT", "the quick brown fox jumps over the lazy dog");
echo $string; // the quick brown CAT jumps over the lazy dog
?>
Posted by: Guest on May-18-2020

Code answers related to "Create a function with three parameters (text, letter, replacement), and you will find it in the text given by you in the text parameter letter that will be entered by you in the letter parameter and replaced with replacement parameter"

Browse Popular Code Answers by Language