PHP 的 cURL 命令行

发布于 2024-12-08 16:16:40 字数 413 浏览 1 评论 0原文

我必须使用自签名证书从 PHP 向安全的 https 服务器发出请求。我在 cURL 中有一个有效的命令行,但在将其转换为正确且有效的 PHP 选项时遇到很多问题。

工作的 cURL 命令是这样的:

curl --cacert cert.pem
     --key cert.key
     --cert cert.crt
     --header 'content-type: text/xml'
     -X POST
     --data @ftit-request.xml https://serverip/dip/DipWebservice > outputfile

有人能给我一些关于如何在 PHP 中正确使用它的提示吗?

I have to make a request from PHP to a secure https server with a self-signed certificate. I have a working command line in cURL but have a lot of problems converting it to the correct and working PHP options.

The working cURL command is this:

curl --cacert cert.pem
     --key cert.key
     --cert cert.crt
     --header 'content-type: text/xml'
     -X POST
     --data @ftit-request.xml https://serverip/dip/DipWebservice > outputfile

Can someone give me some hints on how to use this the correct way in PHP?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

树深时见影 2024-12-15 16:16:40

http://php.net/manual/en/book.curl.php

curl_setopt($ch, CURLOPT_VERBOSE, '1');
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, '1');
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, '1');
curl_setopt($ch, CURLOPT_CAINFO,  getcwd().'/cert/ca.crt');
curl_setopt($ch, CURLOPT_SSLCERT, getcwd().'/cert/mycert.pem');
curl_setopt($ch, CURLOPT_SSLCERTPASSWD, 'password');

http://php.net/manual/en/book.curl.php

curl_setopt($ch, CURLOPT_VERBOSE, '1');
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, '1');
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, '1');
curl_setopt($ch, CURLOPT_CAINFO,  getcwd().'/cert/ca.crt');
curl_setopt($ch, CURLOPT_SSLCERT, getcwd().'/cert/mycert.pem');
curl_setopt($ch, CURLOPT_SSLCERTPASSWD, 'password');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文