我正在尝试获取调用url时当前使用的tls版本。 我试图从php curl获取tls版本,就像Ubuntu中的命令curl一样。
例如:
curl -v https://qpyl.uas-gw.info
* Rebuilt URL to: https://qpyl.uas-gw.info/
* Trying 54.199.158.6...
* Connected to qpyl.uas-gw.info (54.199.158.6) port 443 (#0)
* found 1 certificates in ca.crt
* found 692 certificates in /etc/ssl/certs
* ALPN, offering http/1.1
* SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384
像这样显示tls版本结果。
但我无法像上面的curl那样获得php curl中的版本
使用 TLS1.2进行SSL连接 / ECDHE_RSA_AES_256_GCM_SHA384
php openssl版本: openssl / 1.0.2g
php版本: 5.5.38 。