在安全模式下通过 FTP 传输修改后的文件?

发布于 2024-09-08 21:23:22 字数 185 浏览 6 评论 0原文

我有一个现有文件列表,需要执行以下步骤:

  1. 存储在临时文件中
  2. 修改
  3. 通过 FTP 传输到另一台服务器。服务器始终在安全模式下运行。

我无法使用 tmpfile(),因为在发送之前我仍然无法修改它。

有人遇到过这种问题并找到解决方案吗?有什么想法吗?

I have a list of existing files that need to follow these steps:

  1. Stored in a temporary file
  2. Modified
  3. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

百变从容 2024-09-15 21:23:22

预先创建一个由用户拥有的临时目录,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文