php如何去除字符串中间不想要的字符

2024-11-09 16:44:54
推荐回答(3个)
回答1:

header('Content-type:text/html;charset=utf-8');
$str = "Hi! Come on baby";
$rep = array("c","o");
$str = str_replace($rep, "", $str);
echo $str."
";
?>

回答2:

$content = str_replace(array('字符一', '字符二'), '', $content);

回答3:

你可以用切割函数explode(),然后将切割的2个值拼凑起来就是你要的值了