str_replace(find,replace,string,count)
How to write if find is several keywords
str_replace(find,replace,string,count)
How to write if find is several keywords
<code>str_replace(['a','b','c'],'a',$str);//a或b或c都替换成a str_replace(['a','b','c'],['d','e','f'],$str);//a->d b->e c->f</code>