首頁 >後端開發 >php教程 >php列出目前目錄下的所有php文件

php列出目前目錄下的所有php文件

WBOY
WBOY原創
2016-07-25 08:44:141105瀏覽

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


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn