在preg_match php中使用变量模式返回false

时间:2016-04-09 18:31:28

标签: php string preg-match

我想检查字符串是否包含可变数量的生成单词。这是我提出的代码,它将模式存储在我放在preg_match中的变量中。

此代码的结果:它返回true;

$string = "What a beatiful world";

$pieces = "#\b(" . implode("|",$pieces_arr). ")\b#";

$pieces输出例如:

#\b(hello|you)\b#

成:

if(preg_match($pieces, $string)) {  

        echo "piece found in string!!";

}

0 个答案:

没有答案