Symfony2 发送 XML 到远程 URL

发布于 2024-12-07 05:10:25 字数 380 浏览 0 评论 0原文

我想将 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 技术交流群。

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

发布评论

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

评论(1

旧伤还要旧人安 2024-12-14 05:10:25

嗯,从这里看来,这是一个很好的方法。别忘了,保持简单。

您可能希望将其包装在某个类中来管理与其他服务器的通信。这样它会更加可测试。

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.

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