Open In App

How to replace String in PHP ?

In this article, we are going to replace the String with another by using the PHP built-in str_replace() function.

A String is a collection of characters. The str_replace() is a built-in function in PHP and is used to replace all the occurrences of the search string or array of search strings by a replacement string or array of replacement strings in the given string or array respectively. We can replace the string with another by using PHP str_replace(). This method is case-sensitive, so the programmer has to take care of the case while programming and interpreting the output.



Syntax:

str_replace(substring,new_replaced_string,original_string);

We need to provide three parameters.



Example 1: The following code replaces the string with another string.




<?php
//input string
$string="Geeks for Geeks";
//replace geeks in the string with computer
echo str_replace("Geeks","computer",$string);
?>

Output:

computer for computer

Example 2: The following code replaces the string with empty.




<?php
//input string
$string="Geeks for Geeks";
//replace geeks in the string with empty
echo str_replace("Geeks","",$string);
?>

Output:

for

Example 3: The following code replaces the string with integers.




<?php
//input string
$string="Geeks for Geeks";
//replace geeks in the string with value - 1
echo str_replace("Geeks",1,$string);
?>

Output:

1 for 1

Article Tags :