php列出当前目录下的所有php文件
- 作者: 小木头no
- 来源: 51数据库
- 2022-08-23
php列出当前目录下的所有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 "<a href=http://changetoyoursite/$value>".$value."</a><br>";
}
?>
推荐阅读
