佳缘人才网是面向广大政府、企业、职介行业提供全面的人才网站建设、管理、运营一体化解决方案,采用PHP5 + MYSQL5运行环境,软件百分百开源易于二次开发,可灵活扩展; 其安装简单方便,只需将程序上传至服务器后加以配置即可使用。小编对他还是比较了解的,今天小编就以新增短信接口为例,给大家讲解一下如何进行二次开发,我们今天讲解的是V3.6.0版本,使用的短信接口是我们短信宝短信群发平台的短信接口,我们短信宝短信群发平台的接口非常稳定,发送速度快,注册就送测试短信,推荐大家使用。
打开项目:\admin\templates\plus\sms.htm 在33行左右新增短信宝页面
1
2
3
4
5
6
7
8
9
10
11
12
|
<form action= "?m=plus_sms&a=smsconfig" method= "post" > <td class = "pl20" ><b>接口配置:</b>接口服务器:<input name= "apiserver" type= "radio" class = "checkbox" value= "www" checked />国内 <input name= "apiserver" type= "radio" class = "checkbox" value= "api-hk" <{ if strpos ( $smarty .session.vcpserver, 'api-hk' )>0}> checked<{/ if }> />香港 帐号: <input type= "text" id= "username" name= "username" size= "12" class = "txt" value= "<{$smarty.session.vcpuser}>" > 密码: <input type= "password" id = "apikey" name= "apikey" size= "12" class = "txt" value= "888888" > 签名: <input type= "text" id = "sing" name= "sing" size= "12" class = "txt" value= "<{$smarty.session.sing}>" > 余额:<font color= "#FF0000" ><b><{ $account }></b></font>条 <input type= "submit" value= "修改配置" class = "btn" > [<a href= "http://www.smsbao.com/reg" target= "_blank" style= "color:#F00" >申请账号</a>] 该功能需要先申请账号并充值后才能使用。</td> </form> |
打开项目:\admin\inc\plus_sms.inc.php 在8行左右修改下代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
function sendSMS( $t_pho , $t_msg , $t_time ){ global $cfg ; $serverURL = $_SESSION [ "vcpserver" ]; $VCPU = $_SESSION [ "vcpuser" ]; $VCPApkey = md5( $_SESSION [ "vcpapikey" ]); $sing = $_SESSION [ "sing" ]; $content = '【' . $sing . '】' . $t_msg ; if ( $cfg [ 'charset' ]!= 'utf-8' ) $content =@iconv( 'gbk' , 'utf-8' , $content ); $strurl = $serverURL . "sms?u=" . $VCPU . "&p=" . $VCPApkey . "&m=" . $t_pho . "&c=" .urlencode( $content ); $result = file_get_contents ( $strurl ); if ( $result == 0){ return '000' ; } } function infoSMSAccount(){ $serverURL = $_SESSION [ "vcpserver" ]; $VCPU = $_SESSION [ "vcpuser" ]; $VCPApkey = md5( $_SESSION [ "vcpapikey" ]); $strurl = $serverURL . "balance?u=" . $VCPU . "&p=" . $VCPApkey ; $result = explode ( ',' , file_get_contents ( $strurl )); return $result [1]; } |
打开项目:\smsapi\config.php
1
2
3
4
5
6
|
<?php $_SESSION [ "vcpuser" ]= "" ; $_SESSION [ "vcpapikey" ]= "" ; $_SESSION [ "sing" ]= "" ; ?> |
经过上面的替换,短信宝的短信平台已经替换成功了,可以正常使用了。
报备一下短信宝的VIP模板,这样就可以走短信宝的优质通道了,即便遇到敏感文字我们都不会人工审核,短信内容3~5秒就可送达。
另外:我们已经开发好完整的佳缘人才网v3.6.0系统短信宝插件,点击此链接 下载及查看安装流程。
最新更新
电商类
CMS类
微信类