如何在PHP中替换文本字符串中的多个项目?

时间:2012-02-22 11:26:51

标签: php string str-replace

我希望能够用-替换空格,但也想删除逗号和问号。我怎么能在一个函数中做到这一点?

到目前为止,我已将其替换为空格:

str_replace(" ","-",$title)

1 个答案:

答案 0 :(得分:167)

您可以将数组作为参数传递给str_replace()。查看manual

// Provides: You should eat pizza, beer, and ice cream every day
$phrase  = "You should eat fruits, vegetables, and fiber every day.";
$healthy = ["fruits", "vegetables", "fiber"];
$yummy   = ["pizza", "beer", "ice cream"];

$newPhrase = str_replace($healthy, $yummy, $phrase);