魅思CMS是国内优秀的开源PHP建站系统,擅长电影程序、视频程序、影视系统这一块,在主流建站系统中特色鲜明,以灵活、小巧、兼容性好、负载强等优点而深受许多站长的喜爱。小编对他还是比较了解的,今天小编就以新增短信接口为例,给大家讲解一下如何进行二次开发,我们今天讲解的是v10版本,使用的短信接口是我们短信宝短信群发平台的短信接口,我们短信宝短信群发平台的接口非常稳定,发送速度快,注册就送测试短信,推荐大家使用。
打开项目:\application\controller\Api.php 修改一下代码
1
2
3
4
5
6
7
8
9
|
$result = $Sms ->send( $param ); if ( $result == 0){ //手机发送验证码处理 $msg = '请查看您的手机短信验证码' ; break ; } else { $msg = '短信发送失败' ; die (json_encode([ 'statusCode' => 0, 'error' => '发送失败,' . $msg ])); } |
打开项目:\extend\sms\class.SmsApi.php 修改下短信发送类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
public function sendSMS( $mobile , $msg , $needstatus = 'true' ) { $config = Db::name( 'admin_config' )->where( array ( 'group' => 'sms' ))->column( 'value' , 'name' ); $user = $config [ 'sms_api_account' ]; //短信平台帐号 $pass = md5( $config [ 'sms_api_password' ]); //短信平台密码 $content = '【' . $config [ 'sms_api_sing' ]. '】' . $msg ; $phone = $mobile ; //要发送短信的手机号码 $sendurl = $smsapi . "sms?u=" . $user . "&p=" . $pass . "&m=" . $phone . "&c=" .urlencode( $content ); $result = file_get_contents ( $sendurl ) ; return $result ; // echo $statusStr[$result]; // $postArr = array ( // 'account' => $config['sms_api_account'], // 'password' => $config['sms_api_password'], // 'msg' => urlencode($msg), // 'phone' => $mobile, // 'report' => $needstatus // ); // $result = $this->curlPost($config['sms_send_url'] , $postArr); return $result ; } |
打开项目:\extend\sms\Sms.php 修改下send方法
1
2
3
4
5
6
|
public function send( $param ) { $sms = new SmsApi(); $result = $sms ->sendSMS( $param [ 'tel' ], $param [ 'msg' ]); return $result ; } |
打开项目:\houtai\app\admin\view\system\sms.php 增加下代码
1
2
3
4
5
6
|
<div class = "layui-form-item" > <label class = "layui-form-label" >短信api签名</label> <div class = "layui-input-inline" > <input type= "text" class = "layui-input" name= "sms_api_sing" value= "{$config['sms_api_sing']}" autocomplete= "off" placeholder= "短信api签名" > </div> <div class = "layui-form-mid layui-word-aux" >短信api签名</div> |
经过上面的替换,短信宝的短信平台已经替换成功了,可以正常使用了。
报备一下短信宝的VIP模板,这样就可以走短信宝的优质通道了,即便遇到敏感文字我们都不会人工审核,短信内容3~5秒就可送达。
另外:我们已经开发好完整的魅思V10_CMS短信宝插件,点击此链接 下载及查看安装流程。
最新更新
电商类
CMS类
微信类