1
我試圖使輸入不是模式。我如何preg_match多個單詞
$input= "words trying to compare";
preg_match("/\b{$input}\b/", "these are a lot of words that i'm trying to compare")
// ^this might contain multiple words, but the same as ^^ these
echo "match is found";
我怎樣才能使它的,即使輸入單詞不在相同的順序一句我試圖把它比,它可以返回「發現匹配。」
我只是想這一點,當輸入爲「單詞進行比較」(以錯誤的順序搜索它)沒有關係沒有任何回報。 – Simba
查看更新的答案 – Thamilan
謝謝,工作得很好。 – Simba