3

我需要创建一个函数,该函数将根据比较结果返回 true 或 false。

我有两个字符串:

$one = 'sample product - White - Large'; // White is separate key, and large is separate too
$two = 'White Large';

你知道完成这项任务的任何快速方法吗?爆炸两个字符串可能不安全,因为某些字符串而不是白色会具有:蓝色 - 黑色 - 大。所以我在寻找蓝黑的存在。

我的数据的另一个例子是:

$one = 'sample product - White - Blue - Large';  // White - Blue is separate key, Large is separate too.

如果有人对如何做到这一点有任何想法,我将不胜感激。

谢谢,埃洛隆

4

1 回答 1

7

我会采取这样的策略:

  1. 通过空格将字符串分解为数组(使用正则表达式)
  2. 使用array_intersect()查找匹配项
于 2012-10-23T09:16:45.587 回答