Quick actions

cmd+k|ctrl+k

Navigation

Languages

test_scandir

Snippet info

Language

Php

Visibility

public

Author

fenghestudio

Created

2019-09-14T09:59:07Z

Updated

2019-09-14T09:59:07Z

<?php

$dir = "/tmp";

$dh  = opendir($dir);

while (false !== ($filename = readdir($dh))) {
    $files[] = $filename;

}
sort($files);

print_r($files);

rsort($files);

print_r($files);

?>
INFO