我想检查字符串是否包含可变数量的生成单词。这是我提出的代码,它将模式存储在我放在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!!";
}