PHP filemtime() 函数
PHP filemtime() 函数
完整的 PHP Filesystem 参考手册定义和用法
filemtime() 函数返回文件内容的上次修改时间。
如果成功,该函数将以 Unix 时间戳形式返回文件内容的上次修改时间。如果失败,则返回 FALSE。
语法
filemtime(filename)
参数 | 描述 |
---|---|
filename | 必需。规定要检查的文件。 |
提示和注释
注释:该函数的结果会被缓存。请使用 clearstatcache() 来清除缓存。
实例
<?php
echo filemtime("test.txt");
echo "<br />";
echo "Last modified: ".date("F d Y H:i:s.",filemtime("test.txt"));
?>
echo filemtime("test.txt");
echo "<br />";
echo "Last modified: ".date("F d Y H:i:s.",filemtime("test.txt"));
?>
上面的代码将输出:
1139919766
Last modified: February 14 2006 13:22:46.
Last modified: February 14 2006 13:22:46.
完整的 PHP Filesystem 参考手册
相关文章
- PHP 语法
- PHP EOF(heredoc) 使用说明
- PHP 常量
- PHP For 循环
- PHP $_GET 变量
- PHP array_combine() 函数
- PHP array_diff_uassoc() 函数
- PHP array_diff_ukey() 函数
- PHP array_intersect() 函数
- PHP array_key_exists() 函数
- PHP array_multisort() 函数
- PHP array_product() 函数
- PHP array_sum() 函数
- PHP array_unique() 函数
- PHP array_values() 函数
- PHP natsort() 函数
- PHP FTP 函数
- PHP Libxml 函数
- PHP 5 MySQLi 函数
- PHP PDO