getlastmod() 函数用于获取执行主脚本的最后修改时间。为了显示当前页面的最后修改时间,我们使用以下内容。
用法:
int|false getlastmod()
参数:此函数不接受任何参数。
返回值:它返回当前页面最后一次修改的时间。返回值是一个Unix时间戳,适用于date()。它在错误时返回 false。
范例1:
PHP
<?php
$txt = "PHP";
echo "I love $txt! \r\n";
echo "This page was last modified on ".
date("d F Y h:i:s ",getlastmod());
?>
输出
I love PHP! This page was last modified on 16 June 2021 07:06:06
范例2:
PHP
<?php
$txt = "Akshit";
$GFG=" GeeksforGeeks";
echo "I am $txt and I love $GFG\r\n";
echo "This page was Last modified on "
. date("d F Y h:i:s ",getlastmod());
?>
输出
I am Akshit and I love GeeksforGeeks This page was Last modified on 16 June 2021 07:10:46
范例3:以下代码是使用 date(“h:ia”) 函数修改的。
PHP
<?php
$txt = "This is changed text";
$GFG =" GeeksforGeeks";
echo "$txt of $GFG\r\n";
echo "<br>";
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
<?php
$txt = "This is new date format";
$GFG =" GeeksforGeeks";
echo "$txt of $GFG\r\n";
echo "<br>";
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/function.getlastmod.php
相关用法
- PHP imagecreatetruecolor()用法及代码示例
- PHP fpassthru( )用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- PHP Imagick floodFillPaintImage()用法及代码示例
- PHP geoip_continent_code_by_name()用法及代码示例
- PHP GmagickPixel setcolor()用法及代码示例
- PHP opendir()用法及代码示例
- PHP cal_to_jd()用法及代码示例
- PHP stream_get_transports()用法及代码示例
- PHP Ds\Deque pop()用法及代码示例
- PHP SimpleXMLElement children()用法及代码示例
- PHP is_numeric()用法及代码示例
- PHP Imagick adaptiveSharpenImage()用法及代码示例
- PHP XMLWriter endDtdEntity()用法及代码示例
- PHP isset()用法及代码示例
- PHP ctype_print()用法及代码示例
- PHP Imagick flopImage()用法及代码示例
注:本文由纯净天空筛选整理自akshitsaxenaa09大神的英文原创作品 PHP getlastmod() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。