Collections functions
General functions
Node functions
Render functions
Theme permission functions
User functions
Resource functions

random_char()

Description

Utility function to generate a random UTF8 character

Parameters

This function accepts no parameters.

Return

string

Location

include/migration_functions.php lines 238 to 243

Definition

 
function random_char()
    {
    
$hex_code dechex(mt_rand(195202));    
    
$hex_code .= dechex(mt_rand(128175));
    return 
pack('H*'$hex_code);
    }

This article was last updated 19th March 2024 07:05 Europe/London time based on the source file dated 26th February 2024 11:00 Europe/London time.