通过 PROXY php 进行 HTTP POST 请求

发布于 2024-12-03 11:56:44 字数 65 浏览 0 评论 0原文

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

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

发布评论

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

评论(1

巴黎夜雨 2024-12-10 11:56:44

正常使用 cURL,但在使用 此函数来设置您的代理配置:

curl_setopt — 设置 cURL 传输选项

bool curl_setopt ( resource $ch , int $option , mixed $value )

使用以下选项来控制curl 命令的代理:

CURLOPT_HTTPPROXYTUNNEL - TRUE 表示通过给定 HTTP 代理建立隧道。

CURLOPT_PROXY - 用于隧道请求的 HTTP 代理。

还有各种其他 CURLOPT_* 可以让您执行诸如为代理设置身份验证、指定不同端口等操作...

Use cURL normally, but before you do use this function to set your proxy configuration:

curl_setopt — Set an option for a cURL transfer

bool curl_setopt ( resource $ch , int $option , mixed $value )

Use the following options to control the proxy for your curl commands:

CURLOPT_HTTPPROXYTUNNEL - TRUE to tunnel through a given HTTP proxy.

CURLOPT_PROXY - The HTTP proxy to tunnel requests through.

There are also various other CURLOPT_* that lets you do things like set up authentication for your proxy, specify different ports etc...

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