str_replace() is a PHP function. It replaces all occurrences of the search string with the replacement string
Questions in this tag are generally related with php.
Format on PHP
str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )
It returns a string or an array with all occurrences of search in subject replaced with the given replace value.
Example
// Provides: Hll Wrld f PHP
$vowels = array("a", "e", "i", "o", "u", "A", "E", "I", "O", "U");
$onlyconsonants = str_replace($vowels, "", "Hello World of PHP");