phpyun人才系統在招聘人才系統中也是佼佼者,最近小編知道了php云人才系統更新到5.1版本了,之前的短信插件也無法使用了,小編也整理了一下,下面帶著大家一起進行新版本的替換。我們使用的短信接口是我們短信寶短信群發平臺的短信接口,我們短信寶短信平臺十分穩定,發送速度快,注冊就送測試短信,推薦大家使用
1:打開項目:admin\model\msgconfig.class.php 新增get_restnums_action方法
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' ]; } |
2:打開項目:app\template\admin\admin_msg_config.htm 修改48行左右 新增短信寶相關配置
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> |
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' => '還沒有配置短信,請聯系管理員!' ); } $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' => '短信內容為空' ); } //發送短信 $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); //短信記錄保存數據庫 $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' ){ //檢查是否需要發送系統預警 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' => '發送成功!' ); } else { $sql_data[ 'state' ] = $re[ 'code' ]; $ this -> insert_into( 'moblie_msg' ,$sql_data); return array( 'status' => -1, 'msg' => '發送失敗!狀態:' .$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; } |
好了經過以上的添加,短信寶phpyunV5.1系統增加手機驗證就已經安裝成功,可以正常使用了
報備一下短信寶的VIP模板,這樣就可以走短信寶的優質通道了,即便遇到敏感文字我們都不會人工審核,短信內容3~5秒就可送達。
另外:我們已經開發好完整的phpyunV5.1系統短信寶插件,點擊此鏈接 下載及查看安裝流程。
最新更新
電商類
CMS類
微信類