将 XML 文件保存到远程服务器
我不知道如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法写入 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.