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

前端 未结 2 1654
野性不改
野性不改 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:09

    Your code works correctly, if you're looking for a more elegant way I would either suggest a bash script or looking at the array_map function (possibly other ones like array_walk, array_filter too.)

    That being said, your code is simple and easy to follow so probably the best way to go.

提交回复
热议问题