保留 ftp 或 sftp 时间戳 php 上传
我需要使用 php 将文件上传到安装在 Windows XP PC 上的 ftp 或 sftp 服务器。
如何从 php 上传文件并保留时间戳?
I need to use php to upload files to a ftp or sftp server that is installed on a Windows XP PC.
How I can upload a file from php preserving the timestamp?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您指的是从 Windows XP 计算机上的浏览器使用的 PHP Web 应用程序?
您无法保存时间戳,因为 PHP 只能看到浏览器发送的内容,但浏览器不会发送此信息。 :-(
否则,对于 Windows SFTP 客户端,我建议使用 Putty PSFTP,如果您需要自动化,则使用 PLINK。
I assume you mean a PHP web application, used from a browser on a Windows XP machine?
You cannot conserve the timestamp because PHP can only see what the browser sends, But the browser doesn't send this information. :-(
Otherwise for a windows SFTP client I suggest Putty PSFTP, and PLINK if you need to automate it.