查看哪些文件正在形成特定的php页面?

时间:2011-01-07 12:11:08

标签: php

有没有人知道网络开发费用会告诉我哪些物理php文件被拉到一起形成页面?

实施例

index.phpheader.php sidebar.php news.phpfooter.php组成。是否有可用的工具告诉我,当我访问这些页面时,index.php是由{{1}}形成的?

2 个答案:

答案 0 :(得分:2)

get_included_files()添加到footer.php的最后一行PHP中:

var_dump(get_included_files());

答案 1 :(得分:0)

您可以使用get_included_files功能。

欲了解更多信息,

http://php.net/manual/en/function.get-included-files.php