Php compare strings and return common values(php比较字符串并返回常用值)
问题描述
我已尝试查找有关此的其他帖子/信息,但它们似乎都不起作用 - 尽管我确信这是一项简单的任务.
I have tried to find other posts/information on this and none of them seem to work - although I'm sure this is a simple task.
我有两个字符串,我想要一些代码行来告诉我它们的共同点.
I have two strings, and I would like to have some lines of code that give me the word that they have in common.
例如,我可能有...
String1 = "Product Name - Blue";
String2 = "Blue Green Pink Black Orange";
我想要一个只包含值 Blue 的字符串.我怎样才能做到这一点?提前致谢!
And I would like to have a string only containing the value Blue. How can I do this? Thanks in advance!
推荐答案
你可以使用explode 和 array_intersect 也许?
You can use explode and array_intersect maybe?
此处演示 &这里
<?php
function common($str1,$str2,$case_sensitive = false)
{
$ary1 = explode(' ',$str1);
$ary2 = explode(' ',$str2);
if ($case_sensitive)
{
$ary1 = array_map('strtolower',$ary1);
$ary2 = array_map('strtolower',$ary2);
}
return implode(' ',array_intersect($ary1,$ary2));
}
echo common('Product Name - Blue','Blue Green Pink Black Orange');
返回蓝色";
编辑如果您愿意,可以将其更新为包含不区分大小写的版本.
EDIT Updated it to include a case-insensitive version if you'd like it.
这篇关于php比较字符串并返回常用值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:php比较字符串并返回常用值
基础教程推荐
- 在多维数组中查找最大值 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01