友价源码开发系统如何对接验证码功能?
时间:2023年05月29日
/来源:网络
/编辑:佚名
友价短信验证插件说明
本插件系互亿无线针对友价源码系统开发,请按以下说明进行安装,插件内的所有文件均为对原文件的修改,如果你的系统经过二次开发,安装本插件之前,请仔细核对修改。
功能介绍
手机号短信验证注册
安装步骤
进入后台-基本资料-通信设置,将代码改成如下所示,然后填入短信框里
(注意:有些没有在后台直接添加,需要将函数保存为php文件,保存到config/mobphp/mysendsms.php)
GBK版本
function yjsendsms($m1,$m2){
$user = '您的互亿无线APIID';
$password = '您的互亿无线APIKEY';
if(!empty($m1)){
$url = "http://106.ihuyi.com/webservice/sms.php?method=Submit";
$url .= '&account='.$user.'&password='.$password.'&mobile='.$m1.'&content='.urlencode(iconv("GBK","UTF-8//IGNORE",$m2));
$ret = file_get_contents($url);
}
}
注册地址:http://user.ihuyi.com/?9vXc7
UTF-8版本
function yjsendsms($m1,$m2){
$user = '您的互亿无线APIID';
$password = '您的互亿无线APIKEY';
if(!empty($m1)){
$url = "http://106.ihuyi.com/webservice/sms.php?method=Submit";
$url .= '&account='.$user.'&password='.$password.'&mobile='.$m1.'&content='.urlencode($sign.$m2);
$ret = file_get_contents($url);
}
}
注册地址:http://user.ihuyi.com/?9vXc7
注:$m1表示要发送的手机号码,$m2表示要发送的短信内容
本插件系互亿无线针对友价源码系统开发,请按以下说明进行安装,插件内的所有文件均为对原文件的修改,如果你的系统经过二次开发,安装本插件之前,请仔细核对修改。
功能介绍
手机号短信验证注册
安装步骤
进入后台-基本资料-通信设置,将代码改成如下所示,然后填入短信框里
(注意:有些没有在后台直接添加,需要将函数保存为php文件,保存到config/mobphp/mysendsms.php)
GBK版本
function yjsendsms($m1,$m2){
$user = '您的互亿无线APIID';
$password = '您的互亿无线APIKEY';
if(!empty($m1)){
$url = "http://106.ihuyi.com/webservice/sms.php?method=Submit";
$url .= '&account='.$user.'&password='.$password.'&mobile='.$m1.'&content='.urlencode(iconv("GBK","UTF-8//IGNORE",$m2));
$ret = file_get_contents($url);
}
}
注册地址:http://user.ihuyi.com/?9vXc7
UTF-8版本
function yjsendsms($m1,$m2){
$user = '您的互亿无线APIID';
$password = '您的互亿无线APIKEY';
if(!empty($m1)){
$url = "http://106.ihuyi.com/webservice/sms.php?method=Submit";
$url .= '&account='.$user.'&password='.$password.'&mobile='.$m1.'&content='.urlencode($sign.$m2);
$ret = file_get_contents($url);
}
}
注册地址:http://user.ihuyi.com/?9vXc7
注:$m1表示要发送的手机号码,$m2表示要发送的短信内容
新闻资讯 更多
- 【建站知识】查询nginx日志状态码大于400的请求并打印整行04-03
- 【建站知识】Python中的logger和handler到底是个什么?04-03
- 【建站知识】python3拉勾网爬虫之(您操作太频繁,请稍后访问)04-03
- 【建站知识】xpath 获取meta里的keywords及description的方法04-03
- 【建站知识】python向上取整以50为界04-03
- 【建站知识】scrapy xpath遇见乱码解决04-03
- 【建站知识】scrapy爬取后中文乱码,解决word转为html 时cp1252编码问题04-03
- 【建站知识】scrapy采集—爬取中文乱码,gb2312转为utf-804-03