當前位置: 首頁>>代碼示例>>PHP>>正文


PHP utility::random方法代碼示例

本文整理匯總了PHP中utility::random方法的典型用法代碼示例。如果您正苦於以下問題:PHP utility::random方法的具體用法?PHP utility::random怎麽用?PHP utility::random使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在utility的用法示例。


在下文中一共展示了utility::random方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: substr

 static function generate_random_number($min = 0, $max = 0)
 {
     // generate seed. TO-DO: Look for a better seed value everytime
     $seed = mt_rand();
     // generate $random
     // special thing about random is that it is 32(md5) + 40(sha1) + 40(sha1) = 112 long
     // hence if we cut the 1st 8 characters everytime, we can get upto 14 random numbers
     // each time the length of $random decreases and when it is less than 8, new 112 long $random is generated
     if (strlen(self::$random) < 8) {
         self::$random = md5(uniqid(microtime() . mt_rand(), true) . $seed);
         self::$random .= sha1(self::$random);
         self::$random .= sha1(self::$random . $seed);
     }
     // take first 8 characters
     $value = substr(self::$random, 0, 8);
     // strip first 8 character, leaving remainder for next call
     self::$random = substr(self::$random, 8);
     $value = abs(hexdec($value));
     // Reduce the value to be within the min - max range. 4294967295 = 0xffffffff = max random number
     if ($max != 0) {
         $value = $min + ($max - $min + 1) * ($value / (4294967295 + 1));
     }
     return abs(intval($value));
 }
開發者ID:phupx,項目名稱:genco,代碼行數:24,代碼來源:rand_pass.php


注:本文中的utility::random方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。