2008年12月17日

php str_replace

基本語法,
新字串 = str_replace("目標字元", "取代字元", 目標字串);
$str = str_replace("\n", "
", $str);
$srt = str_replace("\t", "", $str);
$srt = str_replace("\r", "", $str);

使用 array,
新字串 = str_replace(array("目標字元0","目標字元1","目標字元2"), array("取代字元0","取代字元1","取代字元2"), 目標字串);
$str = srt_replace(array("\n","\t","\r"), array("","",""), $str);