2010-12-22 26 views

回答

9

當然,存在爲get_included_files功能。

實施例:

<?php 
// This file is abc.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"; 
} 

?> 

結果將是這樣的:

abc.php 
test1.php 
test2.php 
test3.php 
test4.php 
相關問題