> 백엔드 개발 > PHP 튜토리얼 > [PHP]利用openssl_random_pseudo_bytes和base64_encode函数来生成随机字符串_PHP教程

[PHP]利用openssl_random_pseudo_bytes和base64_encode函数来生成随机字符串_PHP教程

WBOY
풀어 주다: 2016-07-13 09:57:27
원래의
952명이 탐색했습니다.

[PHP]利用openssl_random_pseudo_bytes和base64_encode函数来生成随机字符串

openssl_random_pseudo_bytes函数本身是用来生成指定个数的随机字节,因此在使用它来生成随机字符串时,还需要配合使用函数base64_encode。如下所示:

<code class="language-php hljs ">public static function getRandomString($length = 42)
    {
        /*
         * Use OpenSSL (if available)
         */
        if (function_exists(&#39;openssl_random_pseudo_bytes&#39;)) {
            $bytes = openssl_random_pseudo_bytes($length * 2);

            if ($bytes === false)
                throw new RuntimeException(&#39;Unable to generate a random string&#39;);

            return substr(str_replace([&#39;/&#39;, &#39;+&#39;, &#39;=&#39;], &#39;&#39;, base64_encode($bytes)), 0, $length);
        }

        $pool = &#39;0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ&#39;;

        return substr(str_shuffle(str_repeat($pool, 5)), 0, $length);
    }</code>
로그인 후 복사

在调用base64_encode函数之后,还对结果进行了一次替换操作,目的是要去除随机生成的字符串中不需要的字符。

当然,在使用openssl_random_pseudo_bytes函数之前,最好使用function_exists来确保该函数在运行时是可用的。如果不可用,则使用Plan B:

<code class="language-php hljs ">substr(str_shuffle(str_repeat($pool, 5)), 0, $length);</code>
로그인 후 복사

这个函数的通用性很强,可以根据业务的需要进行适当修改然后当作静态方法进行调用。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/981960.htmlTechArticle[PHP]利用openssl_random_pseudo_bytes和base64_encode函数来生成随机字符串 openssl_random_pseudo_bytes函数本身是用来生成指定个数的随机字节,因此在使用...
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿