php比较关键字字符串
我需要将这两个关键字字符串与 php.ini 进行比较。
$original_keywords = cat, dog, mouse
$possible_keywords_1 = "cat, dog, hamster";
$possible_keywords_2 = "cat, sheep, goat";
我需要一个 php 脚本将数值“1”分配给第一个可能的字符串(1 个匹配),将“2”分配给第二个可能的字符串(2 个匹配)。有人可以帮我吗?
I need to compare these two strings of keywords with php.
$original_keywords = cat, dog, mouse
$possible_keywords_1 = "cat, dog, hamster";
$possible_keywords_2 = "cat, sheep, goat";
I need the a php script to assign numerical values of "1" to the first possible string (1 match) and "2" to the second (2 matches). Could anyone help me out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看实际操作。
See it in action.
您可以结合使用 explode 和 array_intersect
以下是开始的代码:
You can do that using a combination of explode and array_intersect
Following is code to start with: