phpyun人才系統(tǒng)在招聘人才系統(tǒng)中也是佼佼者,最近小編知道了php云人才系統(tǒng)更新到6.3版本了,之前的短信插件也無法使用了,小編也整理了一下,下面帶著大家一起進行新版本的替換。我們使用的短信接口是我們短信寶短信群發(fā)平臺的短信接口,我們短信寶短信平臺十分穩(wěn)定,發(fā)送速度快,注冊就送測試短信,推薦大家使用。
1:打開項目:app\template\admin\admin_msg_config.htm 修改48行左右 新增短信寶相關(guān)配置
|
1
2
3
4
5
6
7
8
9
10
11
12
|
<tr> <th width="220">短信寶賬號:</th> <td><input class="tty_input t_w250" type="text" name="sy_msg_appkey" id="sy_msg_appkey" value="{yun:}$config.sy_msg_appkey{/yun}" size="30"/> </tr> <tr class="admin_table_trbg"> <th width="220">短信寶密碼:</th> <td><input class="tty_input t_w250" type="text" name="sy_msg_appsecret" id="sy_msg_appsecret" value="{yun:}$config.sy_msg_appsecret{/yun}" size="50"/> </tr> <tr> <th width="220">短信寶簽名:</th> <td><input class="tty_input t_w250" type="text" name="sy_msg_appsing" id="sy_msg_appsing" value="{yun:}$config.sy_msg_appsing{/yun}" size="50"/> </tr> |
2:打開當前文件:admin_msg_config.htm修改js內(nèi)容 增加短信簽名和獲取短信余額方法
|
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
|
<script> layui.use(['layer', 'form'], function () { var layer = layui.layer , form = layui.form , $ = layui.$; }); $(function () { $("#config").click(function () { var msgtime = $("#moblie_codetime").val(); if (parseInt(msgtime) < 2) { parent.layer.msg('短信驗證時效因大于兩分鐘!', 2, 8); return false; } else { loadlayer(); $.post("index.php?m=msgconfig&c=save", { config: $("#config").val(), sy_msg_isopen: $("input[name=sy_msg_isopen]:checked").val(), sy_msg_appkey: $("#sy_msg_appkey").val(), sy_msg_appsecret: $("#sy_msg_appsecret").val(), sy_msg_appsing : $("#sy_msg_appsing").val(), sy_kh_isopen: $("input[name=sy_kh_isopen]:checked").val(), sy_kh_appkey: $("#sy_kh_appkey").val(), sy_kh_appsecret: $("#sy_kh_appsecret").val(), sy_kh_city: $("#sy_kh_city").val(), sy_tyc_appkey: $("#sy_tyc_appkey").val(), sy_tyc_appsecret: $("#sy_tyc_appsecret").val(), pytoken: $("#pytoken").val(), sy_msgsendnum: $("#sy_msgsendnum").val(), ip_msgnum: $("#ip_msgnum").val(), moblie_msgnum: $("#moblie_msgnum").val(), cert_msgtime: $("#cert_msgtime").val(), moblie_codetime: $("#moblie_codetime").val(), integral_msg_proportion: $("#integral_msg_proportion").val() }, function (data, textStatus) { parent.layer.closeAll('loading'); config_msg(data); }); } }); $.post("index.php?m=msgconfig&c=get_restnums",{pytoken : $("#pytoken").val(),msguser : $("#sy_msguser").val()},function(data){ data = eval('('+data+')'); if(data){ if(data){ $("#rest_msgnum").val(data); }else{ $("#rest_msgnum").val(0); } $("#rest_khnum").val(data.khnum); $("#rest_businessnum").val(data.businessnum); } }); })</script> |
3:打開項目:app\model\notice.model.php 修改postSMS和sendSMS兩個方法
|
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
73
74
75
76
77
78
79
80
81
82
83
84
85
|
public function sendSMS($data){ if(!checkMsgOpen($this -> config)){ return array('status' => -1, 'msg' => '還沒有配置短信,請聯(lián)系管理員!'); } $data['mobile'] = $data['moblie'] ? $data['moblie'] : $data['mobile']; if($this->_isKey('mobile', $data) == false || CheckMoblie($data['mobile']) == false){ return array('status' => -1, 'msg' => '手機號錯誤'); } if($this->config['sy_web_mobile']!=''){ $regnamer=@explode(';',$this->config['sy_web_mobile']); if(in_array($data['mobile'],$regnamer)){ return array('status' => -1, 'msg' => '該手機號已被禁止使用'); } } if($this->_isKey('content', $data) == false || $data['content'] == ''){ return array('status' => -1, 'msg' => '短信內(nèi)容為空'); } //發(fā)送短信 $row = array( 'appsecret' => $this->config['sy_msg_appsecret'], 'appkey' => $this->config['sy_msg_appkey'], 'appsing' => $this->config['sy_msg_appsing'], 'phone' => $data['mobile'], 'content' => $data['content'], 'mid' => $data['mid'] ? $data['mid'] : '' ); $location = ''; $re= $this->postSMS('msgsend',$row); //短信記錄保存數(shù)據(jù)庫 $sql_data = array( 'uid' => $data['uid'], 'cuid' => $data['cuid'] ? $data['cuid'] : 0, 'moblie' => $data['mobile'], 'ctime' => time(), 'content' => $data['content'], 'port' => $data['port'], 'location' => $location ); if(trim($re) =='0'){ //檢查是否需要發(fā)送系統(tǒng)預警 include_once('warning.model.php'); $warning = new warning_model($this->db,$this->def); $warning -> warning(5); $sql_data['state'] = 0; $sql_data['ip'] = fun_ip_get(); $sqlResult = $this -> insert_into('moblie_msg',$sql_data); return array('status' => 1, 'msg' => '發(fā)送成功!'); }else{ $sql_data['state'] = $re['code']; $this -> insert_into('moblie_msg',$sql_data); return array('status' => -1, 'msg' => '發(fā)送失敗!狀態(tài):'.$re['code']."," . $re['message']); } } private function postSMS($type="msgsend",$data=''){ $sing = $this->config['sy_msg_appsing']; $data['content'] = str_replace(array(" "," ","\t","\n","\r"),array("","","","",""),$data['content']); $url.='?u='.$data['appkey'].'&p='.md5($data['appsecret']).'&m='.$data['phone'].'&c=【'.$sing.'】'.$data['content']; if(function_exists('file_get_contents')){ $file_contents = file_get_contents($url); }else{ $ch = curl_init(); $timeout = 5; curl_setopt ($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); $file_contents = curl_exec($ch); curl_close($ch); } return $file_contents; } |
4:打開項目:admin\model\msgconfig.class.php 新增獲取短信余額方法
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
function get_restnums_action(){ $user = trim($this->config['sy_msg_appkey']); $pass = trim($this->config['sy_msg_appsecret']); $url.= '?u='.$user.'&p='.md5($pass); if(function_exists('file_get_contents')){ $file_contents = file_get_contents($url); }else{ $ch = curl_init(); $timeout = 5; curl_setopt ($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); $file_contents = curl_exec($ch); curl_close($ch); } $result = explode(",", $file_contents); echo $result['1']; } |
5:打開項目:app\template\admin\admin_right.htm 大概700行 替換首頁短信顯示
|
1
2
3
4
5
6
7
8
9
10
11
12
|
function otherAjax(){ if (msg_setting == 1) { $.post("index.php?m=msgconfig&c=get_restnums", {pytoken:pytoken}, function (data) { data = eval('(' + data + ')'); if (data) { $("#rest_msgnum").text(data); } else { $("#rest_msgnum").text(0); } }); } } |
經(jīng)過上面的替換,短信寶的短信平臺已經(jīng)替換成功了,可以正常使用了。進行測試發(fā)送:
報備一下短信寶的VIP模板,這樣就可以走短信寶的優(yōu)質(zhì)通道了,即便遇到敏感文字我們都不會人工審核,短信內(nèi)容3~5秒就可送達。
另外:我們已經(jīng)開發(fā)好完整的phpyun6.3系統(tǒng)短信寶插件,點擊此鏈接?下載及查看安裝流
最新更新
電商類
CMS類
微信類