VPS侦探论坛

 找回密码
 注册
查看: 4400|回复: 2

fsockopen通讯https问题

[复制链接]
发表于 2016-6-6 10:15:21 | 显示全部楼层 |阅读模式

<?php
$fp = fsockopen("https://xxxx", 443, $errno, $errstr, 30);
if (!$fp) {
   echo "$errstr ($errno)
\n";
} else {
   $out = "GET / HTTP/1.1\r\n";
   $out .= "Host: xxx\r\n";
   $out .= "Connection: Close\r\n\r\n";
   fwrite($fp, $out);
   while (!feof($fp)) {
       echo fgets($fp, 128);
   }
   fclose($fp);
}
?>

使用fsockopen去通讯https网站的时候发现如果这么写会导致php报错Unable to find the socket transport "https" - did you forget to enable it when you configured PHP? (42852192),去网上找了下没有合适的修复方案(大多数是Windows),然而本机是腾讯云Centos6.5 64x有什么办法能解决这个问题么?重新编译PHP也可以,但是不会写参数。。
军哥可否给出一点建议指导?

PS:解决这个是为了解决DZ的通讯问题。
美国VPS推荐: 遨游主机LinodeLOCVPS主机云搬瓦工80VPSVultr美国VPS主机中国VPS推荐: 阿里云腾讯云。LNMP付费服务(代装/问题排查)QQ 503228080
 楼主| 发表于 2016-6-6 13:03:03 | 显示全部楼层


Unable to find the socket transport "http" - did you forget to enable it when you configured PHP? (42852192)

似乎用http也会有这个毛病
Linux下Nginx+MySQL+PHP自动安装工具:https://lnmp.org
发表于 2016-6-6 13:49:30 | 显示全部楼层

很明显你这fscokopen参数有问题,人家也已经提示你了Unable to find the socket transport "https",socket transport要用ssl,详细自己去看官网文档吧
http://php.net/manual/zh/function.fsockopen.php
http://php.net/manual/zh/transports.inet.php
美国VPS推荐: 遨游主机LinodeLOCVPS主机云搬瓦工80VPSVultr美国VPS主机中国VPS推荐: 阿里云腾讯云。LNMP付费服务(代装/问题排查)QQ 503228080
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|Archiver|VPS侦探 ( 鲁ICP备16040043号-1 )

GMT+8, 2024-11-17 08:45 , Processed in 0.025435 second(s), 16 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表