在php中链接目录和文件

时间:2016-02-11 11:55:15

标签: php directory

Hello stackoverflow社区;

我试图使用php在目录中显示一些文件,然后解开:

在我的文件中('沙拉')我有三个配方文件(' recipe1.txt',recipe2.txt,' recipe3.txt')和我想要显示它们,以便我写下以下内容:

le-docker-container:/var/www/my-app# ./vendor/bin/phpunit -c tests/phpunit-no-coverage.xml

不幸的是,这只是屏幕上的回声.DS_store,我做错了什么?

1 个答案:

答案 0 :(得分:0)

你可以用这个:

<?php
$dir = "/tmp"; // put what suits you here
$dh  = opendir($dir);
while (false !== ($filename = readdir($dh))) {
    $files[] = $filename;
}

sort($files);

print_r($files);

rsort($files);

echo"$files";

?>

源: http://php.net/manual/en/function.scandir.php