0

我有 2 个文件:
images1.txt
--file1
--file2
--file5
--file6
--file7
images2.txt
--file1
--file5
--file6

我需要创建具有预期结果的文件 images_to_delete.txt:
images_to_delete.txt
--file2
--file7

我知道我可以用 bash 使用命令来做到这一点:

awk 'NR==FNR{a[$0];next}!($0 in a)' images2.txt images1.txt > images_to_delete.txt

有没有可能在不使用 shell_exec 的情况下在 PHP 中执行此操作?

谢谢你。

4

1 回答 1

0

通过使用这些:

将文件读入数组 文件函数

获取两个数组 array_diff函数之间的差异

于 2013-04-30T22:35:53.277 回答