How do i compare a string to a list of strings in PHP?

前端 未结 2 1659
野性不改
野性不改 2021-01-25 15:37

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 str

2条回答
  •  佛祖请我去吃肉
    2021-01-25 16:15

    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.

提交回复
热议问题