[PHP]利用openssl_random_pseudo_bytes和base64_encode函数来生成随机字符串_PHP教程
程序员文章站
2022-05-09 23:43:08
...
[PHP]利用openssl_random_pseudo_bytes和base64_encode函数来生成随机字符串
openssl_random_pseudo_bytes函数本身是用来生成指定个数的随机字节,因此在使用它来生成随机字符串时,还需要配合使用函数base64_encode。如下所示:
public static function getRandomString($length = 42)
{
/*
* Use OpenSSL (if available)
*/
if (function_exists('openssl_random_pseudo_bytes')) {
$bytes = openssl_random_pseudo_bytes($length * 2);
if ($bytes === false)
throw new RuntimeException('Unable to generate a random string');
return substr(str_replace(['/', '+', '='], '', base64_encode($bytes)), 0, $length);
}
$pool = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
return substr(str_shuffle(str_repeat($pool, 5)), 0, $length);
}
在调用base64_encode函数之后,还对结果进行了一次替换操作,目的是要去除随机生成的字符串中不需要的字符。
当然,在使用openssl_random_pseudo_bytes函数之前,最好使用function_exists来确保该函数在运行时是可用的。如果不可用,则使用Plan B:
substr(str_shuffle(str_repeat($pool, 5)), 0, $length);
这个函数的通用性很强,可以根据业务的需要进行适当修改然后当作静态方法进行调用。
上一篇: 第1章 ARM体系结构
下一篇: 数据库概论-SQL语句
推荐阅读
-
[PHP]利用openssl_random_pseudo_bytes和base64_encode函数来生成随机字符串
-
PHP序列号生成函数和字符串替换函数代码_PHP教程
-
[PHP]利用openssl_random_pseudo_bytes和base64_encode函数来生成随机字符串
-
[PHP]利用openssl_random_pseudo_bytes和base64_encode函数来生成随机字符串
-
[PHP]利用openssl_random_pseudo_bytes跟base64_encode函数来生成随机字符串
-
PHP生成自定义长度随机字符串的函数分享_PHP教程
-
[PHP]利用openssl_random_pseudo_bytes和base64_encode函数来生成随机字符串_PHP教程
-
php中生成随机字符串的函数_PHP教程
-
在PHP模板引擎smarty生成随机数的方法和math函数详解_PHP教程
-
生成随机字符串和验证码的类的PHP实例_PHP教程