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"

}

?>

你首先要自定义携凯带header的路径辩芦,然后include就可以了

比如define(...PATH....)

头部<?php include(PATH."header.php")?>

中间部分自定义,如果有通用的模块,还可以孙早<?php >

尾部<?php include(PATH."foot.php")?>

一般比较好的程序,还可以根据模板类型,自动选择header和foot.


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

原文地址: http://outofmemory.cn/yw/8238200.html

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

发表评论

登录后才能评论

评论列表(0条)

保存