wp_generate_uuid4() WordPress Function

The wp_generate_uuid4 function is used to generate a unique identifier for a given value. This function is useful for creating a unique identifier for an object or a user.

wp_generate_uuid4() #

Generate a random UUID (version 4).


Return

(string) UUID.


Top ↑

Source

File: wp-includes/functions.php

7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
function wp_generate_uuid4() {
    return sprintf(
        '%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
        mt_rand( 0, 0xffff ),
        mt_rand( 0, 0xffff ),
        mt_rand( 0, 0xffff ),
        mt_rand( 0, 0x0fff ) | 0x4000,
        mt_rand( 0, 0x3fff ) | 0x8000,
        mt_rand( 0, 0xffff ),
        mt_rand( 0, 0xffff ),
        mt_rand( 0, 0xffff )
    );
}


Top ↑

Changelog

Changelog
VersionDescription
4.7.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by the Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More
Show More