str_ireplace()
str_ireplace - Case-insensitive version ofstr_replace()
.
Syntax
mixed str_ireplace (mixed $search, mixed $replace, mixed $subject, int &$count)Arguments
- search - Note: Every replacement with search array is performed on the result of previous replacement.
- replace
- subject - If subject is an array, then the search and replace is performed with every entry of subject, and the return value is an array as well.
- count - The number of matched and replaced needles will be returned in count which is passed by reference.
