gpt4 book ai didi

php - 将 PHP 代码转换为仅允许 TLSv1 的 curl 命令

转载 作者:可可西里 更新时间:2023-11-01 00:32:03 25 4
gpt4 key购买 nike

如何将此 php 代码转换为 curl 命令?我想通过执行单个 curl 命令在 linux 机器上使用此代码。

$headers = array(
"Content-type: text/xml",
"Content-length: " . strlen($xml)
);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $this->url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 10000);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

$data = curl_exec($ch);

我厌倦了这个,但没有成功:

curl -X POST -H "Content-type: text/xml" -o output.txt -d "param1=param1&username=username&password=password" https://site.url.com -d @data.xml

可能问题出在 HTTPS 上,因为网站上只允许使用 TLSv1。

最佳答案

在 php 中你会使用:

curl_setopt($ch, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_1);

文档提到了更多 TLS 版本:

http://www.php.net/manual/en/function.curl-setopt.php

  • CURL_SSLVERSION_TLSv1_0
  • CURL_SSLVERSION_TLSv1_1
  • CURL_SSLVERSION_TLSv1_2

TLS 版本仅适用于 CURL 版本 7.34 或更新版本。

关于php - 将 PHP 代码转换为仅允许 TLSv1 的 curl 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26611978/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com