require,require_once,include,include_onceで読み込んでいるファイル一覧を取得するには関数get_included_filesを使います。読み込んでいるファイルを配列に格納して返します。 [使用例] <?php require '/web/hoge/hoge.php'; require_once '/lib/work/hoge2.php'; include '/tmp/hoge3.php'; include_once 'hoge4.php'; $files_arr = get_included_files(); foreach ($files_arr as $value) { print $value."<br>"; } ?> [結果] /web/hoge/hoge.php /lib/work/hoge2.php /tmp/hoge3.php hoge