Generators section
hex
hexWithMtRand
uuid
random
randomInt
require_once 'Generators.php';
$generator = new Generators();
Generates a random hexadecimal string of a specified length.
// Generate a hex string using random_bytes.
echo "Hex: " . Generators::hex(16) . "\n";
Generates a random hexadecimal string using mt_rand.
// Generate a hex string using mt_rand.
echo "Hex with mt_rand: " . Generators::hexWithMtRand(16) . "\n";
Generates a universally unique identifier (UUID).
// Generate a UUID.
echo "UUID: " . Generators::uuid() . "\n";
Generates a random string with customizable characters.
// Generate a random string with default characters.
echo "Random String: " . Generators::random(12) . "\n";
Generates a random integer within a specified range.
// Generate a random string with custom characters.
echo "Random String (Custom): " . Generators::random(12, 'ABCDEF') . "\n";