当前位置: 编程技术>php
本页文章导读:
▪使用php生成一个随机字符串的代码 此函数创建一个随机字符串,可以作为用户的随机密码等,有需要的朋友可以参考下。
代码如下:
<?php
/*************
*@l - length of random string
*/
function generate_rand($l){
$c= "ABCDEFGHIJKLMNOPQRSTUVW.........
▪php创建可阅读随机字符串的代码 以下代码将创建一个可阅读的字符串,使其更接近词典中的单词,实用且具有密码验证功能。
代码如下:
<?php
/**************
*@length - length of random string (must be a multiple of 2)
**************/
fun.........
▪php为 URL 地址预设 http 字符串的方法 有时我们需要接受一些表单中的网址输入,但用户很少添加 http:// 字段,此代码将为网址添加该字段。
很简单,也很实用。
代码如下:
<?php
if (!preg_match("/^(http|ftp):/", $_POST['url'])) {
$_POS.........
[1]使用php生成一个随机字符串的代码
来源: 互联网 发布时间: 2013-12-24
此函数创建一个随机字符串,可以作为用户的随机密码等,有需要的朋友可以参考下。
代码如下:
<?php
/*************
*@l - length of random string
*/
function generate_rand($l){
$c= "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
srand((double)microtime()*1000000);
for($i=0; $i<$l; $i++) {
$rand.= $c[rand()%strlen($c)];
}
return $rand;
}
?>
/*************
*@l - length of random string
*/
function generate_rand($l){
$c= "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
srand((double)microtime()*1000000);
for($i=0; $i<$l; $i++) {
$rand.= $c[rand()%strlen($c)];
}
return $rand;
}
?>
您可能感兴趣的文章:
php生成N个不重复的随机数
php 随机显示图片的函数
php 随机显示图片的例子
php生成随机数字和字母的实例代码
php生成随机码的一段代码
PHP生成随机数的函数
php生成一个随机字符串的代码
php生成随机数的例子
3个PHP随机字符串函数生成器
php随机生成字符串函数
PHP生成随机字符串的两种办法
PHP生成随机字符串的二个例子
php随机密码生成函数
php生成随机用户名和随机密码
php生成随机密码的函数
PHP生成随机字符串的函数
php生成随机密码的自定义函数
php生成随机密码的函数
php生成随机密码的几种方法
[2]php创建可阅读随机字符串的代码
来源: 互联网 发布时间: 2013-12-24
以下代码将创建一个可阅读的字符串,使其更接近词典中的单词,实用且具有密码验证功能。
代码如下:
<?php
/**************
*@length - length of random string (must be a multiple of 2)
**************/
function readable_random_string($length = 6){
$conso=array("b","c","d","f","g","h","j","k","l",
"m","n","p","r","s","t","v","w","x","y","z");
$vocal=array("a","e","i","o","u");
$password="";
srand ((double)microtime()*1000000);
$max = $length/2;
for($i=1; $i<=$max; $i++)
{
$password.=$conso[rand(0,19)];
$password.=$vocal[rand(0,4)];
}
return $password;
}
?>
/**************
*@length - length of random string (must be a multiple of 2)
**************/
function readable_random_string($length = 6){
$conso=array("b","c","d","f","g","h","j","k","l",
"m","n","p","r","s","t","v","w","x","y","z");
$vocal=array("a","e","i","o","u");
$password="";
srand ((double)microtime()*1000000);
$max = $length/2;
for($i=1; $i<=$max; $i++)
{
$password.=$conso[rand(0,19)];
$password.=$vocal[rand(0,4)];
}
return $password;
}
?>
[3]php为 URL 地址预设 http 字符串的方法
来源: 互联网 发布时间: 2013-12-24
有时我们需要接受一些表单中的网址输入,但用户很少添加 http:// 字段,此代码将为网址添加该字段。
很简单,也很实用。
代码如下:
<?php
if (!preg_match("/^(http|ftp):/", $_POST['url'])) {
$_POST['url'] = 'http://'.$_POST['url'];
}
?>
if (!preg_match("/^(http|ftp):/", $_POST['url'])) {
$_POST['url'] = 'http://'.$_POST['url'];
}
?>
最新技术文章: