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
相關用法
- PHP get_include_path()用法及代碼示例
- PHP get_class_vars()用法及代碼示例
- PHP get_declared_interfaces()用法及代碼示例
- PHP get_parent_class()用法及代碼示例
- PHP get_meta_tags()用法及代碼示例
- PHP get_resource_id()用法及代碼示例
- PHP get_resource_type()用法及代碼示例
- PHP get_html_translation_table()用法及代碼示例
- PHP get_browser()用法及代碼示例
- PHP get_defined_vars()用法及代碼示例
- PHP get_headers()用法及代碼示例
- PHP get_class()用法及代碼示例
- PHP get_class_methods()用法及代碼示例
- PHP get_called_class()用法及代碼示例
- PHP get_object_vars()用法及代碼示例
- PHP get_declared_classes()用法及代碼示例
- PHP get_current_user()用法及代碼示例
- PHP get_defined_functions()用法及代碼示例
- PHP get_mangled_object_vars()用法及代碼示例
- PHP get_resources()用法及代碼示例
- PHP get_defined_constants()用法及代碼示例
- PHP get_loaded_extensions()用法及代碼示例
- PHP getrandmax()用法及代碼示例
- PHP getcwd()用法及代碼示例
- PHP getdate()用法及代碼示例
注:本文由純淨天空篩選整理自neeraj3304大神的英文原創作品 PHP get_included_files() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。