0

我需要执行以下 linux find 命令

find /home/*/mail/ -type d -name ".test" > tmp_file

但是使用 php (因为 find 命令由于某种原因在某些操作系统中冻结)。如何使用 php 进行此搜索并将结果放入 tmp_file?

谢谢

4

2 回答 2

1

你可以随时使用FilesystemIteratorDirectoryIterator

http://ca2.php.net/manual/en/class.filesystemiterator.php

http://ca2.php.net/manual/en/class.directoryiterator.php

于 2012-11-27T17:32:24.230 回答
1

您可以使用 glob 函数。

看看http://php.net/manual/en/function.glob.php

于 2012-11-27T17:39:19.473 回答