设置文件的日期和时间

Eri*_*rik 3 php time date file

我想在我上传的图像文件上添加日期和时间.哪种方式最好完成这个?

提前致谢!

Ry-*_*Ry- 8

您可以使用该touch功能设置上次修改日期:

touch("path/to/my-image-file.jpg", $someTimestamp);
Run Code Online (Sandbox Code Playgroud)

要在PHP中检索它,请使用filemtime.