【vccode源码】【千千静听源码】【易签到源码】thinkphp微信源码
2024-12-27 05:03:56 来源:{typename type="name"/} 分类:{typename type="name"/}
1.thinkphp5网站 微信授权登录 code得到没问题,微信但就是源码vccode源码提示get_file_contents,但也不说明是什么地方出错了
thinkphp5网站 微信授权登录 code得到没问题,但就是微信千千静听源码提示get_file_contents,但也不说明是什么地方出错了
有可能是ssl证书配置有问题。因为file_get_contents调用的源码易签到源码是一个https地址.
可以试试在参数里加一个context
$sslContext=stream_context_create(array('ssl'=>array(
'verify'=>false
)
));
$result = file_get_contents('https://...', NULL, $sslContext);