我一直在使用str_replace
更換最常見的words..and由於某種原因,它除了更換瓶蓋每一個字母一個可愛的小問題here..i'm。str_replace函數只是返回帽
爲example..if我有下面的代碼
$str ="Fat string of Text.";
$commonwords = array('fat','of','random');
$cleantext = str_replace($commonwords,'',$str);
echo $cleantext;
它將呼應.. F T
任何想法,我做錯了什麼..提前
感謝和oh..i試圖str_ireplace
..但沒有
爲我工作。 'str_replace()函數'給我'脂肪串Text.'和'str_ireplace()'給我'字符串Text.'。你確定你向我們展示了實際的代碼嗎? – BoltClock 2010-09-04 02:41:23