骑士人才系统是基于PHP+MYSQL为核心开发的招聘类型web系统,它是免费的和开源的,使用范围非常广泛。小编今天就以替换短信接口为例带大家进行二次开发,我们使用的短信接口是我们短信宝短信群发平台的短信接口,我们短信宝短信群发平台非常稳定,发送速度快,注册就送测试短信,推荐大家使用。
1:打开项目:\Application\Home\Controller\ 新增SmsbaoController.class.php文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?php namespace Home\Controller; use Common\Controller\FrontendController; class SmsbaoController extends FrontendController{ public function _initialize() { parent::_initialize(); } /** * 安装短信宝插件 */ public function index(){ $data[ 'name' ]= '短信宝(推荐)' ; $data[ 'alias' ]= 'smsbao' ; $map[ 'id' ]= '1' ; $res=D( 'sms' )->where($map)->save($data); //短信模板 $map_sms_tpl[ 'type' ]= 'qscms' ; $data_sms_tpl[ 'type' ]= 'smsbao' ; $sms_tpl_res=D( 'sms_templates' )->where($map_sms_tpl)->save($data_sms_tpl); if ($res&&$sms_tpl_res){ echo '短信宝插件安装成功,请将Application/Home/Controller/SmsbaoController.class.php文件删除' ; } else { echo '插件安装失败,请联系短信宝客服' ; } } } |
2:打开项目:\Application\Common\qscmslib\sms\ 新增smsbao\smsbao.class.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
<?php class smsbao_sms{ protected $_error = 0; protected $setting = array(); public function __construct($setting) { $ this ->setting = $setting; } /** * 发送模板短信 * @param string $type 短信通道 手机号码集合,用英文逗号分开 * @param array $option['mobile':手机号码集合,用英文逗号分开,'content':短信内容] * @return boolean */ public function sendTemplateSMS($type= 'captcha' ,$option){ $data[ 'u' ] = $ this ->setting[ 'appkey' ]; $data[ 'p' ] = md5($ this ->setting[ 'secretKey' ]); //解析模板内容 if ($option[ 'data' ]){ foreach ($option[ 'data' ] as $key => $val) { $data[ '{' .$key. '}' ] = $val; } $data[ 'c' ] = '【' .$ this ->setting[ 'signature' ]. '】' .strtr($option[ 'tpl' ],$data); } else { $data[ 'c' ] = '【' .$ this ->setting[ 'signature' ]. '】' .$option[ 'tpl' ]; } //转换编码 //foreach ($data as $key => $val) { // $data[$key] = iconv('UTF-8','GB2312//IGNORE',$val); //} $name = '_' .$type. '_url' ; $url = $ this ->$name.http_build_query($data); //遍历发送 //$mobile = explode(',',$option['mobile']); //foreach ($mobile as $key => $val) { if ($ this ->_https_request($url. '&m=' .$option[ 'mobile' ])== '0' ) { return true ; } else { return false ; } } protected function _https_request($url,$data = null ){ if (function_exists( 'curl_init' )){ $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_TIMEOUT, 10); curl_setopt($ch, CURLOPT_USERAGENT, _USERAGENT_); curl_setopt($ch, CURLOPT_REFERER,_REFERER_); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE); curl_setopt($curl, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1); if (!empty($data)){ curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_POSTFIELDS, $data); } curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); $output = curl_exec($curl); curl_close($curl); return $output; } else { $ this ->_error = '短信发送失败,请开启curl服务!' ; return false ; } } public function getError(){ return $ this ->_error; } } ?> |
3:打开项目:\Application\Admin\View\default\Sms\config_edit.html 修改大概第10行
1
2
3
4
5
6
7
|
<div class= "toptip" > <div class= "toptit" >提示:</div> <p>短信模块属收费模块,需申请开通后才能使用,请联系我司客服申请开通。</p> <p class= "link_green_line" >资费标准请联系短信宝客服获取,更多介绍请进入 <a href= "http://www.smsbao.com" target= "_blank" >短信宝官方网站</a></p> <p><font color= "red" >使用短信发送服务前,请确认短信服务商已正确配置!</font></p> <p><font color= "red" >阿里大于的短信暂时不能正常发送招聘类信息,使用前请先向阿里大于官方核实,谨慎使用!</font></p> </div> |
经过上面的替换,短信宝的短信平台已经替换成功了,可以正常使用了。进行测试发送:
报备一下短信宝的VIP模板,这样就可以走短信宝的优质通道了,即便遇到敏感文字我们都不会人工审核,短信内容3~5秒就可送达。
另外:我们已经开发好完整的骑士人才v6.0.4系统短信宝插件,点击此链接 下载及查看安装流程。
最新更新
电商类
CMS类
微信类