phpyun人才系统在招聘人才系统中也是佼佼者,最近小编知道了php云人才系统更新到5.0版本了,之前的短信插件也无法使用了,小编也整理了一下,下面带着大家一起进行新版本的替换。我们使用的短信接口是我们短信宝短信群发平台的短信接口,我们短信宝短信平台十分稳定,发送速度快,注册就送测试短信,推荐大家使用
1:打开项目:app\template\admin\admin_msg_config.htm 在66行新增短信宝页面
1
2
3
4
5
6
7
8
9
10
11
12
|
<tr class= "admin_table_trbg" > <th width= "200" >短信宝用户名:</th> <td><input type= "text" class= "input-text tips_class" name= "smsbao_user" id= "smsbao_user" value= "{yun:}$config.smsbao_user{/yun}" size= "50" maxlength= "255" ></td> </tr> <tr class= "admin_table_trbg" > <th width= "200" >短信宝密码:</th> <td><input type= "password" class= "input-text tips_class" name= "smsbao_pass" id= "smsbao_pass" value= "{yun:}$config.smsbao_pass{/yun}" size= "50" maxlength= "255" ></td> </tr> <tr class= "admin_table_trbg" > <th width= "200" >短信宝签名:</th> <td><input type= "text" class= "input-text tips_class" name= "smsbao_sign" id= "smsbao_sign" value= "{yun:}$config.smsbao_sign{/yun}" size= "50" maxlength= "255" ></td> </tr> |
2:打开项目:app\model\notice.model.php 修改sendSMS和postSMS方法
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
86
87
88
89
90
91
92
93
94
95
|
private function postSMS($type= "msgsend" ,$data= '' ){ $data[ 'content' ] = str_replace(array( " " , " " , "\t" , "\n" , "\r" ),array( "" , "" , "" , "" , "" ),$data[ 'content' ]); $url.= '?u=' .$data[ 'uid' ]. '&p=' .md5($data[ 'pwd' ]). '&m=' .$data[ 'mobile' ]. '&c=【' .$data[ 'key' ]. '】' .$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; } public function sendSMS($data) { if (!$ this ->config[ "sy_msguser" ] || !$ this ->config[ "sy_msgpw" ] || !$ this ->config[ "sy_msgkey" ]||$ this ->config[ 'sy_msg_isopen' ]!= '1' ){ return array( 'status' => -1, 'msg' => "还没有配置短信,请联系管理员!" ); } $data[ 'mobile' ] = $data[ 'moblie' ] ? $data[ 'moblie' ] : $data[ 'mobile' ]; if ($ this ->_isKey( 'mobile' , $data) == fasle || CheckMoblie($data[ 'mobile' ]) == false ){ return array( 'status' => -1, 'msg' => '手机号错误' ); } if ($ this ->_isKey( 'content' , $data) == fasle || $data[ 'content' ] == "" ){ return array( 'status' => -1, 'msg' => '短信内容为空' ); } $msguser=$ this ->config[ "smsbao_user" ]; $msgpw= $ this ->config[ "smsbao_pass" ]; $msgkey=$ this ->config[ "smsbao_sign" ]; $time = $data[ 'time' ] ? $data[ 'time' ] : '' ; $mid = $data[ 'mid' ] ? $data[ 'mid' ] : '' ; $row = array( 'uid' =>$msguser, 'pwd' =>$msgpw, 'key' =>$msgkey, 'mobile' =>$data[ 'mobile' ], 'content' =>$data[ 'content' ], 'time' =>$time, 'mid' =>$mid ); $re= $ this ->postSMS( "msgsend" ,$row); $sql_data[ "uid" ] = $data[ 'uid' ]; $sql_data[ "name" ] = $data[ 'name' ]; $sql_data[ "cuid" ] = $data[ 'cuid' ]; $sql_data[ 'cname' ] = $data[ 'cname' ] ? $data[ 'cname' ] : '系统' ; $sql_data[ "moblie" ] = $data[ 'mobile' ]; $sql_data[ "ctime" ] = time(); $sql_data[ "content" ] = $data[ 'content' ]; if (trim($re) == '0' ){ include_once( 'warning.model.php' ); $warning = new warning_model($ this ->db,$ this ->def, array( 'uid' =>$ this ->uid, 'username' =>$ this ->username, 'usertype' =>$ this ->usertype)); $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; $ this ->insert_into( "moblie_msg" ,$sql_data); include(CONFIG_PATH. "db.data.php" ); if ($arr_data[ 'msgreturn' ][$re]){ return array( 'status' => -1, 'msg' => "发送失败!状态:" .$arr_data[ 'msgreturn' ][$re]); } else { return array( 'status' => -1, 'msg' => "发送失败!状态:" .$re ); } } } |
3:打开项目:admin\model\msgconfig.class.php 在100行新增下代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
function get_restnums_action(){ $user = trim($_POST[ 'smsbao_user' ]); $pass = trim($_POST[ 'smsbao_pass' ]); $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' ]; } |
好了经过以上的添加,短信宝phpyunV5.0系统增加手机验证就已经安装成功,可以正常使用了
报备一下短信宝的VIP模板,这样就可以走短信宝的优质通道了,即便遇到敏感文字我们都不会人工审核,短信内容3~5秒就可送达。
另外:我们已经开发好完整的phpyunV5.0系统短信宝插件,点击此链接 下载及查看安装流程。
最新更新
电商类
CMS类
微信类