目录
php实现的IMEI限制的短信验证码发送类
首页 后端开发 php教程 php实现的IMEI限制的短信验证码发送类_PHP教程

php实现的IMEI限制的短信验证码发送类_PHP教程

Jul 13, 2016 am 09:54 AM
php

php实现的IMEI限制的短信验证码发送类

   php实现的IMEI限制的短信验证码发送类

  ?

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

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

class Api_Sms{

const EXPIRE_SEC = 1800; // 过期时间间隔

const RESEND_SEC = 60; // 重发时间间隔

const ONE_DAY_FREQ = 5; // 每日向同一个手机号发短信的次数

const ONE_DAY_IMEI_COUNT = 3; // 每日向同一个手机号发送短信的IMEI个数

 

public $error = array();

 

 

/**

* 向指定手机号发送验证码

* @param $mobile

* @param $imei

* @return bool

*/

public function sendVerifyCode($mobile, $imei) {

if(!$this->isMobile($mobile)) {

$this->error = array('code' => -1, 'msg' => '这个手机号很奇葩哦,请正确输入后重试');

return false;

}

 

$redis = Api_Common::redis();

$vcKey = 'VC_'.$mobile;

$limitKey = 'VC_LIMIT_'.$mobile;

 

// 验证码重发限制

$data = json_decode($redis->get($vcKey), true);

if($data && time()

$this->error = array('code' => -1, 'msg' => '短信已在1分钟内发出,请耐心等待');

return false;

}

 

// 手机号及IMEI限制

$sendCnt = $redis->zScore($limitKey, $imei);

if($sendCnt && $sendCnt >= self::ONE_DAY_FREQ) {

$this->error = array('code' => -1, 'msg' => '没收到短信?请稍等或检查短信是否被屏蔽');

return false;

}

$imeiCnt = $redis->zCard($limitKey);

if($imeiCnt >= self::ONE_DAY_IMEI_COUNT && !$sendCnt) {

$this->error = array('code' => -1, 'msg' => '已超过验证码发送设备限制');

return false;

}

 

// 获取验证码

if(!$data) {

$vc = strval(rand(100000, 999999));

$data = array('vc' => $vc, 'resend_expire' => 0);

$redis->set($vcKey, json_encode($data));

$redis->expire($vcKey, self::EXPIRE_SEC); // 设置验证码过期时间

}

$vc = $data['vc'];

 

$content = '安全验证码:'.$vc;

$result = $this->send($mobile, $content);

if($result) {

// 重设重发时限

$data['resend_expire'] = time() + self::RESEND_SEC;

$ttl = $redis->ttl($vcKey);

$redis->set($vcKey, json_encode($data));

$redis->expire($vcKey, $ttl);

 

// 设置手机号与IMEI限制

$redis->zIncrBy($limitKey, 1, $imei);

$redis->expireAt($limitKey, strtotime(date('Y-m-d',strtotime('+1 day'))));

}

return $result;

}

 

/**

* 向指定手机号发送短信

* @param $mobile

* @param $content

* @return bool

*/

public function send($mobile, $content){

// TODO 调用具体服务商API

return true;

}

 

/**

* 判断是否为合法手机号

* @param $mobile

* @return bool

*/

private function isMobile($mobile) {

if(preg_match('/^1\d{10}$/', $mobile))

return true;

return false;

}

 

/**

* 验证短信验证码

* @param $mobile

* @param $vc

* @return bool

*/

public function checkVerifyCode($mobile, $vc) {

$vcKey = 'VC_'.$mobile;

$vcData = json_decode(Api_Common::redis()->get($vcKey), true);

if($vcData && $vcData['vc'] === $vc) {

return true;

}

return false;

}

 

/**

* 清除验证码

* @param $mobile

*/

public function cleanVerifyCode($mobile) {

$redis = Api_Common::redis();

$vcKey = 'VC_'.$mobile;

$limitKey = 'VC_LIMIT_'.$mobile;

$redis->del($vcKey);

$redis->del($limitKey);

}

}

  另付其他网友实现的短信验证码代码

  ?

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

/*--------------------------------

功能: 中国短信网PHP HTTP接口 发送短信

修改日期: 2009-04-08

说明: http://http.c123.com/tx/?uid=用户账号&pwd=MD5位32密码&mobile=号码&content=内容

状态:

100 发送成功

101 验证失败

102 短信不足

103 操作失败

104 非法字符

105 内容过多

106 号码过多

107 频率过快

108 号码内容空

109 账号冻结

110 禁止频繁单条发送

111 系统暂定发送

112 号码不正确

120 系统升级

--------------------------------*/

$uid = '9999'; //用户账号

$pwd = '9999'; //密码

$mobile = '13912341234,13312341234,13512341234,02122334444'; //号码

$content = '中国短信网PHP HTTP接口'; //内容

//即时发送

$res = sendSMS($uid,$pwd,$mobile,$content);

echo $res;

 

//定时发送

/*

$time = '2010-05-27 12:11';

$res = sendSMS($uid,$pwd,$mobile,$content,$time);

echo $res;

*/

function sendSMS($uid,$pwd,$mobile,$content,$time='',$mid='')

{

$http = 'http://http.c123.com/tx/';

$data = array

(

'uid'=>$uid, //用户账号

'pwd'=>strtolower(md5($pwd)), //MD5位32密码

'mobile'=>$mobile, //号码

'content'=>$content, //内容

'time'=>$time, //定时发送

'mid'=>$mid //子扩展号

);

$re= postSMS($http,$data); //POST方式提交

if( trim($re) == '100' )

{

return "发送成功!";

}

else

{

return "发送失败! 状态:".$re;

}

}

 

function postSMS($url,$data='')

{

$row = parse_url($url);

$host = $row['host'];

$port = $row['port'] ? $row['port']:80;

$file = $row['path'];

while (list($k,$v) = each($data))

{

$post .= rawurlencode($k)."=".rawurlencode($v)."&"; //转URL标准码

}

$post = substr( $post , 0 , -1 );

$len = strlen($post);

$fp = @fsockopen( $host ,$port, $errno, $errstr, 10);

if (!$fp) {

return "$errstr ($errno)\n";

} else {

$receive = '';

$out = "POST $file HTTP/1.1\r\n";

$out .= "Host: $host\r\n";

$out .= "Content-type: application/x-www-form-urlencoded\r\n";

$out .= "Connection: Close\r\n";

$out .= "Content-Length: $len\r\n\r\n";

$out .= $post;

fwrite($fp, $out);

while (!feof($fp)) {

$receive .= fgets($fp, 128);

}

fclose($fp);

$receive = explode("\r\n\r\n",$receive);

unset($receive[0]);

return implode("",$receive);

}

}

?>

  以上所述就是本文的全部内容了,希望大家能够喜欢。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/994740.htmlTechArticlephp实现的IMEI限制的短信验证码发送类 php实现的IMEI限制的短信验证码发送类 ? 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...
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前 By 尊渡假赌尊渡假赌尊渡假赌
仓库:如何复兴队友
4 周前 By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
3 周前 By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

CakePHP 项目配置 CakePHP 项目配置 Sep 10, 2024 pm 05:25 PM

在本章中,我们将了解CakePHP中的环境变量、常规配置、数据库配置和电子邮件配置。

适用于 Ubuntu 和 Debian 的 PHP 8.4 安装和升级指南 适用于 Ubuntu 和 Debian 的 PHP 8.4 安装和升级指南 Dec 24, 2024 pm 04:42 PM

PHP 8.4 带来了多项新功能、安全性改进和性能改进,同时弃用和删除了大量功能。 本指南介绍了如何在 Ubuntu、Debian 或其衍生版本上安装 PHP 8.4 或升级到 PHP 8.4

CakePHP 日期和时间 CakePHP 日期和时间 Sep 10, 2024 pm 05:27 PM

为了在 cakephp4 中处理日期和时间,我们将使用可用的 FrozenTime 类。

CakePHP 文件上传 CakePHP 文件上传 Sep 10, 2024 pm 05:27 PM

为了进行文件上传,我们将使用表单助手。这是文件上传的示例。

CakePHP 路由 CakePHP 路由 Sep 10, 2024 pm 05:25 PM

在本章中,我们将学习以下与路由相关的主题?

讨论 CakePHP 讨论 CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP 是 PHP 的开源框架。它的目的是使应用程序的开发、部署和维护变得更加容易。 CakePHP 基于类似 MVC 的架构,功能强大且易于掌握。模型、视图和控制器 gu

如何设置 Visual Studio Code (VS Code) 进行 PHP 开发 如何设置 Visual Studio Code (VS Code) 进行 PHP 开发 Dec 20, 2024 am 11:31 AM

Visual Studio Code,也称为 VS Code,是一个免费的源代码编辑器 - 或集成开发环境 (IDE) - 可用于所有主要操作系统。 VS Code 拥有针对多种编程语言的大量扩展,可以轻松编写

CakePHP 创建验证器 CakePHP 创建验证器 Sep 10, 2024 pm 05:26 PM

可以通过在控制器中添加以下两行来创建验证器。

See all articles