print我一直在尝试为我网站上的所有页面创建标准页脚。为了测试这一点,我创建了一个最小文件,如下所示:
<html>
<body>
This is a test file.
<!--#include virtual="/footer.php" -->
</body>
</html>
然后,我在 footer.php 中:
<div id="footer">
What a lovely footer! <br />
<?php
echo "Last modified: " . date("d F Y H:i:s.", getlastmod());
?>
</div>
但是,最后显示的修改日期是 footer.php
我怎样才能使它打印包含它的文件的最后修改日期?