Search
 
SCRIPT & CODE EXAMPLE
 

PHP

uuidv4 php

function gen_uuid() {
    return sprintf( '%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
        // 32 bits for "time_low"
        mt_rand( 0, 0xffff ), mt_rand( 0, 0xffff ),

        // 16 bits for "time_mid"
        mt_rand( 0, 0xffff ),

        // 16 bits for "time_hi_and_version",
        // four most significant bits holds version number 4
        mt_rand( 0, 0x0fff ) | 0x4000,

        // 16 bits, 8 bits for "clk_seq_hi_res",
        // 8 bits for "clk_seq_low",
        // two most significant bits holds zero and one for variant DCE1.1
        mt_rand( 0, 0x3fff ) | 0x8000,

        // 48 bits for "node"
        mt_rand( 0, 0xffff ), mt_rand( 0, 0xffff ), mt_rand( 0, 0xffff )
    );
}
Comment

PREVIOUS NEXT
Code Example
Php :: laravel eloquent select case when 
Php :: codeigniter order_by 
Php :: symfony migration down 
Php :: php array sum 
Php :: features of PHP7 
Php :: html special characters php 
Php :: test laravel scheduler 
Php :: uppercase php 
Php :: how to write javascript inside php 
Php :: write test case in react native 
Php :: php serialize() 
Php :: php if in array 
Php :: display image from database in laravel 
Php :: php strict mode 
Php :: laravel json response 
Php :: php faker long text 
Php :: laravel hasMany with join 
Php :: wordpress theme widgets 
Php :: if session is empty laravel 
Php :: Best debugging tools for php 
Php :: php json decoding as string incorrectly 
Php :: get custom post type taxonomy value 
Php :: laravel collection distinct 
Php :: laravel return validation errors 
Php :: in_array associative array php 
Php :: laravel check environment hlper 
Php :: laravel get column field name 
Php :: yesterday php 
Php :: The `php` command cannot be found. Please verify that PHP is installed, or set the `php.executables` setting. 
Php :: laravel pagination problem in blade 
ADD CONTENT
Topic
Content
Source link
Name
2+3 =