Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 4, 2019 15:37
Embed
What would you like to do?
#<?php
function generar_token_seguro($longitud)
{
if ($longitud < 4) {
$longitud = 4;
}
return bin2hex(random_bytes(($longitud - ($longitud % 2)) / 2));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment