A method of obtaining random numbers by PHP implementation

Source: Internet
Author: User
Tags alphanumeric characters what php
This article mainly introduces PHP simple acquisition of random numbers of common methods, combined with examples of PHP implementation of the specified range of random number and the specified character sequence random number of simple implementation skills, the need for friends can refer to the following

1. Get directly from the number of Min-max, for example 1-20:

$randnum = Mt_rand (1, 20);

2. Randomly select one in an array (the case of a combination of letters and numbers is required when verifying the code)

function Randuid () {$str = "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20";//The characters to be displayed can be deleted by themselves $list = Explode (",", $STR); $cmax = count ($list)-1; $randnum = Mt_rand (0, $cmax); $uid = $list [$randnum];}

Related recommendations:

PHP generates a mixed string of random numbers , letters, or alphanumeric characters

What PHP generates a random number method

JS generates a specified range of random numbers and random sequence methods

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.