码迷,mamicode.com
首页 > 其他好文 > 详细

字符串,验证码

时间:2019-03-06 17:57:38      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:bst   sub   html   dom   foreach   imp   array   text   and   

<?php

header(‘content-type:text/html;charset=utf-8‘);
// array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12)
foreach (range(0, 12) as $number) {
    echo $number;
}
echo "<br/>";
print_r(range(0,9));
echo "<br/>";
print_r(range("a","z")) ;
echo "<br/>";
print_r(range("A","Z")) ;


echo "<br/>";
 $text=implode(range(0,9));
 $text.=implode(range("a","z"));
 $text.=implode(range("A","Z"));

 $text=str_shuffle($text);
 $text=substr($text,0,5);

 echo $text;
 echo "<br/>";
 //openssl_random_pseudo_bytes($length)
 $str=openssl_random_pseudo_bytes(5);
var_dump($str);
print_r($str);


echo "<br/>";
echo implode(array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12));
//用来生成验证码

字符串,验证码

标签:bst   sub   html   dom   foreach   imp   array   text   and   

原文地址:https://www.cnblogs.com/nfyx/p/10484745.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!