Home >Backend Development >PHP Tutorial >PHP generates random numbers of specified length_PHP tutorial

PHP generates random numbers of specified length_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:52:28847browse

01
/**
02
* Generate random numbers of specified length
03
* @author yangyingjie
04
* @param $number
05
* @return string
06
​*/
07
function createRandNumberBySize($number)
08
{
09
    $number = (int)$number;
10
    if ($number === 0) {
11
        return '';
12
    } else {
13
        $rankNumberString = "";
14
        for ($i = 0; $i < $number + 1; $i++) {
15
            if ($i !== 0 && $i % 2 === 0) {
16
                $rankNumberString .= mt_rand(11, 99);
17
            }
18
        }
19
 
20
        if ($number % 2 === 0) {
21
            return $rankNumberString;
22
        } else {
23
            return $rankNumberString . mt_rand(1, 9);
24
        }
25
 
26
    }
27
}

作者:杨哥哥

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/478104.htmlTechArticle01 /** 02 * 生成指定长度的随机数字 03 * a href=http://my.oschina.net/arthor target=_blank rel=nofollow@author/a yangyingjie 04 * @param $number 05 * a href=http://my.osch...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn