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.
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)