php generate GUID

WBOY
Release: 2016-07-25 08:44:21
Original
982 people have browsed it

GUID: Globally Unique Identifier (Globally Unique Identifier), also known as UUID (Universally Unique IDentifier).
GUID is a 128-bit binary numeric identifier generated by a specific algorithm and is used to indicate the uniqueness of a product. GUID is mainly used to assign unique identifiers in a network or system with multiple nodes and computers.
On the Windows platform, GUID is widely used in Microsoft products to identify objects such as registry keys, class and interface identifiers, databases, system directories, etc. The format of the GUID is "xxxxxxxx-xxxx-xxxx-xxxx- xxxxxxxxxxxx", where each x is a 32-bit hexadecimal number in the range 0-9 or a-f. For example: 6F9619FF-8B86-D011-B42D-00C04FC964FF is a valid GUID value.

★GUID is unique in space and time, ensuring that different numbers generated in different places at the same time are different.
★No two computers in the world will generate duplicate GUID values.
★When a GUID is needed, it can be completely automatically generated by the algorithm and does not require an authoritative organization to manage it.
★GUID has a fixed length and is relatively short, which is very suitable for sorting, identification and storage.

  1. function create_guid() {
  2. $charid = strtoupper(md5(uniqid(mt_rand(), true)));
  3. $hyphen = chr(45);// "-"
  4. $uuid = chr(123 )// "{"
  5. .substr($charid, 0, 8).$hyphen
  6. .substr($charid, 8, 4).$hyphen
  7. .substr($charid,12, 4).$hyphen
  8. . substr($charid,16, 4).$hyphen
  9. .substr($charid,20,12)
  10. .chr(125);// "}"
  11. return $uuid;
  12. }
Copy code

php, GUID


Related labels:
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template