PHP generates a unique order number

Source: Internet
Author: User

<? PHP     function Build_order_no () {        returndate(' Ymd ').  Substr(implode(NULLarray_mapstr_split(substr(  Uniqid(), 7, 1)), 0, 8);    }     echo build_order_no ();

Output results

2014062356100485

2014062349535399

The

uses uniqid to get a unique, non-repeating string that is generated based on the current microsecond number (but his first 7 bits seem to change for a long time, so do not consider the deletion) and take its 8th to 13th place. But this string contains the English alphabet, what should I do? The
uses Ord to get his ASCII code, so there's the next step: Use Str_split to split the string into arrays and use Array_map to manipulate it (faster). The
then returns an array, KO, using implode to make a string, but the character length is variable, take the previous fixed several, and then precede the current year and date, this method generates the order number, the world will not have much repetition.
Of course, unless you put the server time forward, but not afraid of the tune, Brother does not believe he will be in the same microsecond two orders, network data transmission also points to time, even if you are local.

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.