在安全模式下通过 FTP 传输修改后的文件?
我有一个现有文件列表,需要执行以下步骤:
- 存储在临时文件中
- 修改
- 通过 FTP 传输到另一台服务器。服务器始终在安全模式下运行。
我无法使用 tmpfile(),因为在发送之前我仍然无法修改它。
有人遇到过这种问题并找到解决方案吗?有什么想法吗?
I have a list of existing files that need to follow these steps:
- Stored in a temporary file
- Modified
- Transferred to another server via FTP. All while the server is running in safe mode.
I can't use tmpfile()
, because I still wouldn't be able to modify it, before sending it off.
Anyone come across this kind of problem and find a solution? Any ideas at all?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
预先创建一个由用户拥有的临时目录,PHP 在该目录下运行。
在运行时,在该目录中创建一个文件。将一些东西放入其内容中。现在您有了临时文件。最后通过FTP发送出去。那里没问题。
Beforehand, create a temporary directory owned by the user under which PHP runs.
At run time, create a file in that directory. Put some stuff into its contents. Now you have your temporary file. Finally, send it off via FTP. No problem there.