php如何获取当前脚本所有加载的文件

php如何获取当前脚本所有加载的文件,第1张

get_included_files 返回被 include和require文件的array

说明

get_included_files ( void ) : array

返回所有被 include、 include_once、 require 和 require_once 的文件名。

返回值

返回所有文件名称的 array。

脚本最初被称为”被包含的文件“,所以脚本自身也会和 include 系列函数引用的脚本列在一起,被多次 include 和 require 的文件在返回的 array 里只会列出一次。

扩展资料:

程序示例

<?php

include 'test1.php'

include_once 'test2.php'

require 'test3.php'

require_once 'test4.php'

$included_files = get_included_files()

foreach ($included_files as $filename) {

echo "$filename\n"

}

?>

php中读取目录下的文件名的方式确实不少,最简单的是scandir,具体代码如下:

$dir="./目录名/"

$file=scandir($dir)

print_r($file)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/7955551.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-11
下一篇 2023-04-11

发表评论

登录后才能评论

评论列表(0条)

保存