SplFileInfo::getATime()函数是PHP中标准PHP库(SPL)的内置函数,用于获取文件的最后访问时间。
用法:
int SplFileInfo::getATime( void )
参数:该函数不接受任何参数。
返回值:该函数返回文件的最后访问时间。
以下示例程序旨在说明PHP中的SplFileInfo::getATime()函数:
示例1:
<?php
// PHP Program to illustrate
// Splfileinfo::getATime() function
// Create new SPlFileInfo Object
$file = new SplFileInfo('demo1.php');
// Print result
echo (date("F d Y H:i:s.", $file->getATime()));
?>
输出:
October 14 2018 03:24:12.
示例2:
<?php
// PHP program to use array to check multiple files
$GFG = array(
"/home/rajvir/Desktop/GeeksforGeeks/dummy.php",
"/home/rajvir/Desktop/gfg.txt",
"/var/www/html/gfg.php",
"demo.php"
);
foreach ($GFG as &$file) {
// Create new SPlFileInfo Object
$file = new SplFileInfo('demo1.php');
// Print result
echo date("F d Y H:i:s.", $file->getATime()) . "</br>";
}
?>
输出:
October 14 2018 03:24:12. October 14 2018 03:24:12. October 14 2018 03:24:12. October 14 2018 03:24:12.
参考: http://php.net/manual/en/splfileinfo.getatime.php
相关用法
- PHP DirectoryIterator getATime()用法及代码示例
- PHP SplFileInfo getGroup()用法及代码示例
- PHP SplFileInfo getFilename()用法及代码示例
- PHP SplFileInfo getFileInfo()用法及代码示例
- PHP SplFileInfo getInode()用法及代码示例
- PHP SplFileInfo openFile()用法及代码示例
- PHP SplFileInfo getPathname()用法及代码示例
- PHP SplFileInfo::getPathInfo()用法及代码示例
- PHP SplFileInfo getPath()用法及代码示例
- PHP SplFileInfo getOwner()用法及代码示例
- PHP SplFileInfo getMTime()用法及代码示例
- PHP SplFileInfo getBasename()用法及代码示例
- PHP SplFileInfo isDir()用法及代码示例
- PHP SplFileInfo getType()用法及代码示例
- PHP SplFileInfo getPerms()用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | SplFileInfo getATime() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。