PHP: 我想检查其他词语中包含的词语。
Example
1. A = "Samsung Galaxy Note5", B = "Samsung Galaxy Note 5"
or
2. C = "Iphone 6 16 GB", D = "Iphone 6"
or
3. E = "Samsung Galaxy Note 4", F = "Samsung Galaxy s6"
The result must be :
1. A = B, TRUE
2. C = D, TRUE
3. E != F, FALSE
我该怎么办?有人可以帮帮我吗?谢谢。
答案 0 :(得分:0)
这样的事情会起作用
$a = "Iphone 6 16 GB";
$b = "Iphone 6";
if ( stristr( str_replace(' ', '', $a), str_replace(' ', '', $b) ) !== false ) // use strstr for case senstivity
echo 'match found';
else
echo "no match";