PHP: a simple way to generate a specified random string

Source: Internet
Author: User
PHP provides a simple implementation method to generate a specified random string. The simple implementation method for PHP to generate a specified random string is analyzed as follows: this is a simple function and the generated content is not forcibly set. Therefore, the length of the generated string is simpler than that of the PHP to generate the specified random string.

The specific analysis is as follows:

This is a simple function that does not forcibly set the generated content. Therefore, when the length of the generated string is small, there will be no specified type of characters. Of course, the modification is also very simple, so we will not add it here.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

/**

* @ Param string $ type

* @ Param $ length

* @ Return string

*/

Function randomString ($ type = "number, upper, lower", $ length ){

$ Valid_type = array ('number', 'uppper ', 'lower ');

$ Case = explode (",", $ type );

$ Count = count ($ case );

// Determine whether the parameter is valid based on the intersection

If ($ count! = Count (array_intersect ($ case, $ valid_type ))){

Return false;

}

$ Lower = "abcdefghijklmnopqrstuvwxyz ";

$ Upper = strtoupper ($ lower );

$ Number = "0123456789 ";

$ Str_list = "";

For ($ I = 0; $ I <$ count; ++ $ I ){

$ Str_list. = $ case [$ I];

}

Return substr (str_shuffle ($ str_list), 0, $ length );

}

Echo randomString ("number, upper, lower", 12 );

The specific analysis of struct is as follows: this is a simple function and does not force set the generated content. Therefore, the length of the generated string is greater than that of the string...

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.