Generating Random Token Php

[Solved] Generating Random Token Php | Php - Code Explorer | yomemimo.com
Question : generating-random-token-php

Answered by : nitesh-jangid

<?php
//Generate a random string.
$token = openssl_random_pseudo_bytes(16);
//Convert the binary data into hexadecimal representation.
$token = bin2hex($token);
//Print it out for example purposes.
echo $token;
?>

Source : | Last Update : Tue, 26 Jan 21

Answers related to generating random token php

Code Explorer Popular Question For Php