這篇文章主要介紹了PHP取得redis裡不存在的6位隨機數的方法,可設定24小時過時限制,涉及php字串及資料庫相關操作技巧,需要的朋友可以參考下
本文實例敘述了PHP取得redis裡不存在的6位隨機數的方法。分享給大家供大家參考,如下:
PHP取得6位數隨機數
PHP str_shuffle()
函數
str_shuffle() 函數隨機打亂字串中的所有字元。
#描述 | |
---|---|
## string
必需。規定要打亂的字串。用php的str_shuffle函數:
#<?php $randStr = str_shuffle('ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890'); $rand = substr($randStr,0,6); ?>
$port_number = '1605D1BCC6C8027BA0223147652D67D6'; $send_number = $this->getSixRandNumber(); $rs = $this->redis->setKeyValue('ports:' . $send_number,$port_number); //以秒为最小单位 $this->redis->setTimeout('ports:' . $send_number,24*3600); /** * 获取6位数随机数 */ protected function getSixRandNumber(){ $randStr = str_shuffle('1234567890'); $rand = substr($randStr,0,6); $port = $this->redis->getItemByKey('ports:' .$rand); //存在的重新取 if($port != null){ return $this->getSixRandNumber(); } return $rand; }
以上是PHP取得redis裡不存在的6位元隨機數使用範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!