我需要根据比较结果创建一个返回true或false的函数。
我有两个字符串:
$one = 'sample product - White - Large'; // White is separate key, and large is separate too
$two = 'White Large';
你知道做任务的快捷方法吗?爆炸两个字符串可能不安全,因为一些字符串而不是白色字符串将具有:蓝色 - 黑色 - 大。所以我正在寻找Blue - Black的存在。
我的数据的另一个例子是:
$one = 'sample product - White - Blue - Large'; // White - Blue is separate key, Large is separate too.
如果有人对如何做有任何想法,我会非常感激。
谢谢, eloleon