Is it possible to get the date that a file was uploaded to FTP? Not created.
Its use will be in a system where I upload files for a client to view which will appear on a dynamic page and need to be timestamped with when they were last changed.
I basically need to get the time that the file had finished transferring onto FTP – via an FTP client, uploaded by me.
Use PHP’s stat() function. It returns every data that you’ll need to know.
http://php.net/manual/en/function.stat.php
I think that in your case “file modification time” is the answer.