如何将字符串与 PHP 中的字符串列表进行比较?

2022-01-25 00:00:00 string compare 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.

相关文章