通过 PROXY php 进行 HTTP POST 请求
我想在 PHP 上使用 CURL 通过代理通过 Http Post 发送数据 我曾尝试这样做,但没有结果!请帮忙!
I want send data via Http Post through proxy using CURL on PHP
I had try to do it but without result !! Please any help !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正常使用 cURL,但在使用 此函数来设置您的代理配置:
使用以下选项来控制curl 命令的代理:
还有各种其他
CURLOPT_*
可以让您执行诸如为代理设置身份验证、指定不同端口等操作...Use cURL normally, but before you do use this function to set your proxy configuration:
Use the following options to control the proxy for your curl commands:
There are also various other
CURLOPT_*
that lets you do things like set up authentication for your proxy, specify different ports etc...