Symfony2 发送 XML 到远程 URL
我想将 XML 数据发送到远程 URL。如何使用 Symfony2 以正确的方式做到这一点?
在平面 PHP 中使用curl 的等效项是:
$ch = curl_init("http://website");
$request["queue"] = file_get_contents("file_to_send.xml");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
$response = curl_exec($ch);
curl_close ($ch);
I would like to send XML data to a remote URL. How to do this in a proper way using Symfony2?
Equivalent in flat PHP using curl would be:
$ch = curl_init("http://website");
$request["queue"] = file_get_contents("file_to_send.xml");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
$response = curl_exec($ch);
curl_close ($ch);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,从这里看来,这是一个很好的方法。别忘了,保持简单。
您可能希望将其包装在某个类中来管理与其他服务器的通信。这样它会更加可测试。
Well, from here it looks like a good way to do it. Don't forget, keep it simple.
You might want to wrap it in some class that would manager communication with other servers. This way it would be more testable.