PHP 仅列出PHP文件夹中的某些文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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>";
}


?>

以上是关于PHP 仅列出PHP文件夹中的某些文件的主要内容,如果未能解决你的问题,请参考以下文章

PHP 仅使用 opendir() 列出目录并允许点击显示内容

AWS S3策略限制用户仅列出存储桶中的某些文件夹

PHP列出目录中的所有文件[重复]

列出一个目录中的所有文件PHP [重复]

使用php列出目录中的所有文件夹子文件夹和文件

c9 上的 Laravel Blade 模板仅选择性地扩展到某些页面