Home > php教程 > php手册 > body text

php生成指定长度的随机数字

WBOY
Release: 2016-06-13 10:50:52
Original
1284 people have browsed it

01
/** 
02
 *  生成指定长度的随机数字
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 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
}

作者:杨哥哥

source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!