str_replace

Example

 mixed str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] ) 

Description

This function returns a string or an array with all occurrences of search in subject replaced with the given replace value. If you don't need fancy replacing rules (like regular expressions), you should always use this function instead of preg_replace().

Return Values

This function returns a string or an array with the replaced values.