欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php列出当前目录下的所有php文件

程序员文章站 2022-05-22 14:00:01
...

php列出当前目录下的所有php文件

  1. //Define directory for files listing
  2. //original example
  3. //$files = glob('/path/to/dir/*.xml');
  4. $files = glob('*.php');
  5. //to limit what is displayed you can use a diff listing:
  6. //$files = array_diff($files, array('index.php','opendb.php'));
  7. foreach ($files as $value) {
  8. echo "".$value."
    ";
  9. }
  10. ?>
复制代码

目录下, php