ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[TOC] ## 示例 ``` $files = scandir('.', SCANDIR_SORT_DESCENDING); print_r($files); //Array //( // [0] => phpinfo.php.old // [1] => php_err.log // [2] => php.log // [3] => index.php // [4] => a.php // [5] => .. // [6] => . //) $files = scandir('.', SCANDIR_SORT_ASCENDING); print_r($files); //Array //( // [0] => . // [1] => .. // [2] => a.php // [3] => index.php // [4] => php.log // [5] => php_err.log // [6] => phpinfo.php.old //) ```