在 php 中使用 CURL 包装器与直接使用相比有什么好处?
我可以直接使用
`curl $url -H $headers -d $data`
或者我可以使用 cURL 包装器功能 和更多包装器就像 Zend Framework 提供的那样。
我发现使用直接方法很容易,我是否错过了一个好处?我使用 cURL 来获取 JSON 响应,因此不需要复杂的解析。
I can use straight forward
`curl $url -H $headers -d $data`
Or I can use the cURL wrapper functionality and some more wrappers like the ones Zend Framework gives.
I find it easy to use the straight forward approach, am I missing a benefit here? I use cURL for getting JSON responses, so no complex parsing is needed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
顺便说一句,您的反引号版本可能应该在 $url、$ 上使用 escapeshellarg headers 和 $data 特别是如果它们中的任何一个依赖于用户输入。
Btw your backtick version should probably use escapeshellarg on the $url, $headers and $data especially if any of them depend on user input.