Replace characters with the most efficient and simplest character substitution functions in PHP tutorial
str_replace($arr1,$arr2,$str)
Example one:
str_replace("iwind", "kiki", "i love iwind, iwind said");
The output " i love kiki, kiki said
"
Results
All "Iwind" in the original string are replaced with "Kiki". Str_replace is case sensitive, so you can't imagine using Str_replace ("Iwind", "Kiki",...) Replace "Iwind" in the original string. Str_replace can also achieve many-to-one
Definition and usage
The Str_replace () function replaces some other characters in a string with a string.
Grammar
Str_replace (find,replace,string,count) parameter description
Find required. Specifies the value to find.
Replace Required. Specifies the value that replaces the value in Find.
string is required. Specifies the string to be searched.
Count is optional. A variable that counts the number of replacements.
The article is edited and collated by the data network http://www.ziliao999.com
'). addclass (' pre-numbering '). Hide (); $ (this). addclass (' has-numbering '). Parent (). append ($numbering); for (i = 1; i <= lines; i++) {$numbering. Append ($ ('
'). Text (i)); }; $numbering. FadeIn (1700); }); });
The above describes the Tellmewhen string PHP string and character substitution functions, including the contents of the Tellmewhen string, I hope that the PHP tutorial interested in a friend helpful.