Collections functions
General 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 29th November 2023 20:35 Europe/London time based on the source file dated 9th June 2023 14:10 Europe/London time.