php去掉一个字符串中某个字符
展开阅读全文
$str="ceshi";
$str=str_replace('ce','',$str); 
echo $str;