输出19346322544现在让我们以人类"/> 输出19346322544现在让我们以人类">
filectime() 函数返回文件的最后更改时间。它将文件的最后更改时间作为 UNIX 时间戳返回,失败时返回 false。
filectime ( file_path );
file_path - 将找到最后更改时间的文件的路径。
filectime() 函数以 UNIX 时间戳形式返回文件的最后更改时间,失败时返回 false。
<?php echo filectime("info.txt"); ?>
19346322544
现在让我们以人类可读形式的日期形式获取文件的上次更改时间。
现场演示
<?php echo "Last change time of the file: ".date("F d Y H:i:s.",filectime("info.txt")); ?>
Last change time of the file: September 23 2018 08:12:42
以上是在PHP中的filectime()函数的详细内容。更多信息请关注PHP中文网其他相关文章!