将 XML 文件保存到远程服务器

发布于 2024-11-28 10:03:09 字数 170 浏览 0 评论 0原文

我不知道如何使用 PHP DOM 将 XML 文件保存到远程 Web 服务器。

我尝试使用 $dom->save('http://www.somedomain.com/file.xml'); 但没有成功。我已将远程服务器上“file.xml”的权限设置为 777,但这没有帮助。

i can't find out how to save XML file to remote web server using PHP DOM.

I tried with $dom->save('http://www.somedomain.com/file.xml'); but without success. I've set permissions of 'file.xml' on remote server to 777 but that doesn't helps.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

瑾夏年华 2024-12-05 10:03:09

您无法写入 URL,除非服务器支持 WebDAV 等。您需要在服务器上有一个脚本来接受 http 文件上传并从那里处理它们。

至于为什么这行不通,想象一下如果任何人都可以将文件保存到他们想要的任何 URL,网络将会多么有趣。

You can't write to a URL, unless the server supports WebDAV or the like. You'd need a script on the server which accepts http file uploads and processes them from there.

As to why this doesn't work, imagine how fun the web would be if anyone could save files to whatever URL they wanted.

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