dqvzfp6468 2017-02-08 16:05
浏览 106
已采纳

在preg_replace中用array替换字符串

I have a string which I want to filter. I want to find some words which I want to replace using preg_replace. My parameters are an array of words I want to take out from my string, and my replacements is just an empty space. Can someone please help me to solve this problem.

My Code:

$str = "Hello world. It's a beautiful day.";
$para = array("world","day");
$newstr = preg_replace('/\b($para)\b/','',$str);
echo $newstr;
  • 写回答

2条回答 默认 最新

  • dongqiao6445 2017-02-08 16:13
    关注

    You can use it like this:

    $str = "Hello world. It's a beautiful day.";
    $para = array("/world/","/day/");
    $newstr = preg_replace($para,'',$str);
    echo $newstr;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?