问题:
如何去掉一个字符串中某个字符?
比如说:
你原来的字符串是 "abcdefg",想将其中的a去掉,则可以用以下方法:
$str="abcdefg"; $str=str_replace('a','',$str); echo $str;