使用正则表达式替换PHP单词

时间:2016-04-16 10:09:18

标签: php

晕,我试图用preg_replace '\b'替换php中常量值的完整单词,但我收到了错误。

以下是我的代码段:

<?php
    $refinedName = str_replace(explode(",", Constants::$master_refine_categories[$_GET["category"]]), '',$refinedName);

    foreach ($refinedName as $item) {
        $item = preg_replace('/\b$item\b/','',$refinedName);            
    }
?>

0 个答案:

没有答案