1. 程式人生 > >利用openssl_random_pseudo_bytes和base64_encode函式來生成隨機字串​

利用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);
    }123456789101112131415161718

在呼叫base64_encode函式之後,還對結果進行了一次替換操作,目的是要去除隨機生成的字串中不需要的字元。

當然,在使用openssl_random_pseudo_bytes函式之前,最好使用function_exists來確保該函式在執行時是可用的。如果不可用,則使用Plan B:

substr(str_shuffle(str_repeat($pool, 5)), 0, $length);1

這個函式的通用性很強,可以根據業務的需要進行適當修改然後當作靜態方法進行呼叫。