destoon短信接口修改方法 - 浮云的等待 - 博客园

来源: destoon短信接口修改方法 – 浮云的等待 – 博客园

destoon是很优秀的B2B行业站程序。程序模块化开发契合度很高,二次开发起来也很顺畅。数据缓存,权限分配,SEO功能方面都不错。

但是在使用这套程序的时候,常常要用到发送短信的功能,而destoon本身只接入了自己的短信接口。一些初接触destoon的开发者不知道如何修改。

所以铁牛特此写个文档分享如何修改destoon如何接入外部短信接口。

 

第一步:找到/include/global.func.php文件,搜索函数send_sms

修改function send_sms为function send_sms_back,新建函数send_sms

function send_sms($mobile, $message, $word = 0, $time = 0) {
global $db,
$DT,
$DT_TIME,
$DT_IP,
$_username;
if (!$DT['sms'] || !$DT['sms_uid'] || !$DT['sms_key'])
return false;
$sms_url = 'http://app.com/test/sms.php'; //你的短信接口地址
//例如你的短信接口是http://app.com/test/sms.php?username=athena&pwd=123456&mobile=15889726201&msg=我的测试短信内容
$word or $word = word_count($message);
$sms_message = rawurlencode(convert($message, DT_CHARSET, 'UTF-8'));
//data是你的url字符串 例如:username=athena&pwd=123456&mobile=15889726201&msg=我的测试短信内容
$data = 'username='.$DT['sms_uid'].'&pwd='.$DT['sms_key']. '&mobile='.$mobile13.'&msg='.$sms_message;
//采用PHP的cURL库推送网页
$cur = curl_init($sms_url);
curl_setopt($cur, CURLOPT_POST, 1);
curl_setopt($cur, CURLOPT_POSTFIELDS, $data);
curl_setopt($cur, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($cur, CURLOPT_HEADER, 0);
curl_setopt($cur, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($cur, CURLOPT_RETURNTRANSFER, 1);
$rec = curl_exec($cur);
curl_close($cur);
$code='';
if(!$rec==$DT['sms_ok']){
$code = 'Can Not Connect SMS Server';
}else{
$code =$DT['sms_ok'];
}
$db->query("INSERT INTO {$db->pre}sms (mobile,message,word,editor,sendtime,code) VALUES ('$mobile','$message','$word','$_username','$DT_TIME','$code')");
return $code;
}

第二步:设置短信返回值

我的短信接口地址是:http://app.com/test/sms.php,如果短信发送成功,信息是success,这个发送成功的信息需要在destoon管理后台去设置

07dce7bc2ed7bb045baa5bd730d95bc4

4d2b98a8a124ab7778fd35f158949721

 

提示:如果你的curl_init()函数不可用

找到找到php.ini,修改extension=php_curl.dll 把前面的分号去掉
如果你的php库没有php_curl.dll,那么将php_curl.dll php5ts.dlllibeay32.dll ssleay32.dll 复制到 windows/system32下 重启IIS或Apache服务即可

赞(0) 打赏
分享到: 更多 (0)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏