gpt4 book ai didi

php - 如何使用 PHP 确定文件年龄?

转载 作者:IT王子 更新时间:2023-10-29 00:59:33 25 4
gpt4 key购买 nike

有什么方法可以使用 PHP 确定文件夹中图像的文件年龄?

我想删除超过 2 小时的旧文件,是否可以在上传到文件夹时不为其文件名添加时间戳名称?

如果有,请举个例子!

谢谢

最佳答案

if (time()-filemtime($filename) > 2 * 3600) {
// file older than 2 hours
} else {
// file younger than 2 hours
}

关于php - 如何使用 PHP 确定文件年龄?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1757097/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com