📜  PHP getlastmod()函数

📅  最后修改于: 2022-05-13 01:56:40.368000             🧑  作者: Mango

PHP getlastmod()函数

getlastmod()函数用于获取执行主脚本的最后修改时间。为了显示当前页面的最后修改时间,我们使用以下内容。

句法:

int|false getlastmod()

参数:此函数不接受任何参数。

返回值:返回当前页面最后一次修改的时间。返回的值是一个 Unix 时间戳,适用于date() 。出错时返回false

示例 1:

PHP


PHP


PHP
";
    echo "This page was Last modified on "
        . date("h:ia ",getlastmod());
?>


PHP
";
    echo "This page was Last modified on "
        . date("H:i:s a",getlastmod());
?>


输出
I love PHP! 
This page was last modified on 16 June 2021 07:06:06 

示例 2:

PHP


输出
I am Akshit and I love  GeeksforGeeks
This page was Last modified on 16 June 2021 07:10:46 

示例 3:使用date(“h:ia”)函数修改以下代码。

PHP

";
    echo "This page was Last modified on "
        . date("h:ia ",getlastmod());
?>

输出:

This is changed text of GeeksforGeeks
This page was Last modified on 01:48pm

示例 3:使用date(“H:i:s a”)函数修改以下代码。

PHP

";
    echo "This page was Last modified on "
        . date("H:i:s a",getlastmod());
?>

输出:

This is new date format of GeeksforGeeks
This page was Last modified on 13:57:47 pm

参考: https://www. PHP.net/manual/en/函数.getlastmod。 PHP