当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP get_included_files()用法及代码示例


get_included_files() 是一个内置函数,它返回一个包含包含或所需文件名称的数组。

用法:

get_included_files(): array 

参数:该函数不接受任何参数。

返回值:它返回文件名的数组。

示例1:这个例子演示了 get_included_files()函数。

PHP


<?php 
include 'print.php';   
$nameFile =  get_included_files() ; 
var_dump($nameFile) ; 
?>

注意:包含的文件必须存在于正确的目录中。在此示例中,它是“print.php”。

输出:

array(2) {
    [0] => string(51) “/home/dachman/Desktop/Articles/GFG/Method/index.php”
    [1] => string(51) “/home/dachman/Desktop/Articles/GFG/Method/print.php”
}

示例 2:下面的代码也演示了get_included_files()函数。

注意:根据您的系统路径或存储文件的位置,这些程序的输出必须有所不同。

PHP


<?php 
  
  include 'print.php'; 
      
$nameFile =  get_included_files() ; 
foreach($nameFile as $filename){ 
    echo $filename."\n" ; 
} 
  
?>

输出:

/home/dachman/Desktop/Articles/GFG/Method/index.php
/home/dachman/Desktop/Articles/GFG/Method/print.php

参考: https://www.php.net/manual/en/function.get-included-files.php


相关用法


注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP get_included_files() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。