PHP Source Code Analysis DZX1.5 random number functions, dzx1.5random_php tutorial

Source: Internet
Author: User
Tags php source code

PHP source code Analysis of DZX1.5 random number function, Dzx1.5random


The example of PHP source code Analysis of the DZX1.5 random number function. Share to everyone for your reference. Specific as follows:

<?php/** * @param int $length: Random number length * @param int $numeric: 0 or not 0, where 0 means the random number consists of a full number, not 0 means that the random number consists of a full letter * @return string: Returns the generated random Number */function random ($length, $numeric = 0) {  $seed = Base_convert (MD5 (Microtime (). $_server[' Document_root ']), 16, $ Numeric? 10:35);  $seed = $numeric? (Str_replace (' 0 ', ', $seed). ' 012340567890 '): ($seed. ' ZZ '. Strtoupper ($seed));  $hash = ";  $max = strlen ($seed)-1;  for ($i = 0; $i < $length; $i + +) {    $hash. = $seed {mt_rand (0, $max)};  }  return $hash;} echo Random (' 1 ', echo ')
'; Echo random (' ");/*end of php*/

The results of the operation are as follows:

228283270677112
Sjqffsu76994qfs

I hope this article is helpful to everyone's PHP programming.

http://www.bkjia.com/PHPjc/1018521.html www.bkjia.com true http://www.bkjia.com/PHPjc/1018521.html techarticle PHP Source Code Analysis of the random use of the DZX1.5 function, dzx1.5random The example of the PHP source code Analysis DZX1.5 Random number function of the arbitrary usage. Share to everyone for your reference. Specific as ...

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.