toplan / phpsms

:iphone::rocket:Probably the most intelligent, elegant sms send library in php
MIT License
642 stars 130 forks source link

使用云片发送短信时报错 #114

Closed yuyifly82 closed 7 years ago

yuyifly82 commented 7 years ago

我把phpsms升级到1.8.0后云片发送短信时报错,我查看了下错误,应该是在Agent.php中curl()处循环读取$opts时报错, foreach ($opts as $key => $value) { curl_setopt($ch, $key, $value); } 我将其改成
curl_setopt($ch, CURLOPT_SSL_POST,$opts[3]); curl_setopt($ch, CURLOPT_SSL_HTTPHEADER,$opts[1]); curl_setopt($ch, CURLOPT_SSL_POSTFIELDS,http_query_bulid($opts[0])); curl_setopt($ch, CURLOPT_SSL_HTTPURL,$opts[4]); 以后就正常发送云片短信了。

toplan commented 7 years ago

确实有bug,谢谢指出