php列出当前目录下的所有php文件
时间:2021-07-01 10:21:17
帮助过:30人阅读
php列出当前目录下的所有php文件 - //Define directory for files listing
- //original example
- //$files = glob('/path/to/dir/*.xml');
- $files = glob('*.php');
- //to limit what is displayed you can use a diff listing:
- //$files = array_diff($files, array('index.php','opendb.php'));
-
- foreach ($files as $value) {
- echo "".$value."
"; - }
-
-
- ?>
|
目录下, php