Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 4, 2019 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/d109fcffbfbc06998b96968ddef3c590 to your computer and use it in GitHub Desktop.
Save parzibyte/d109fcffbfbc06998b96968ddef3c590 to your computer and use it in GitHub Desktop.
#<?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