Answers for "string replace all occurance in php"

PHP
3

php replace every occurrence of character in string

//replaces every occurence of $search with $replace in the string $subject
str_replace ($search, $replace, $subject);
Posted by: Guest on July-12-2020
0

replace all occurrence char in string php

$string = str_replace('search','replace',$string);
Posted by: Guest on January-27-2021

Code answers related to "string replace all occurance in php"

Browse Popular Code Answers by Language