How do i compare a string to a list of strings in PHP?(如何将字符串与 PHP 中的字符串列表进行比较?)
问题描述
Basically i have two files with strings in them separated with a new line.
What i wish to do is get the first string from the first file and compare it to ALL of the strings from the second file. Then get the second string from the first file and compare it to ALL of the strings in the second file then get the third and etc etc.
Currently i have this piece of code, but i am not sure if it is working as i wish it to be
$file = file_get_contents("file1.txt");
$pieces = explode("
", trim($file));
foreach($pieces as $piece)
{
$file2 = file_get_contents("file2.txt");
$pieces2 = explode("
", trim($file2));
foreach($pieces2 as $piece2)
{
if($piece == $piece2)
echo 'yes';
}
}
Well there is a more efficient way to achieve this. Using array_intersect
you can find the common lines between this two files.
$a = file('file1.txt');
$b = file('file2.txt');
$c = array_intersect($a, $b);
Whatever lines which are common between the two files are found in the $c
array. However do note that the intersection is case sensitive.
这篇关于如何将字符串与 PHP 中的字符串列表进行比较?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将字符串与 PHP 中的字符串列表进行比较?


基础教程推荐
- 在多维数组中查找最大值 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01