Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 4, 2019 15:36
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/9ae6153f26f409013a3d6656eb4506e3 to your computer and use it in GitHub Desktop.
Save parzibyte/9ae6153f26f409013a3d6656eb4506e3 to your computer and use it in GitHub Desktop.
#<?php
function generar_token_seguro($longitud)
{
if ($longitud < 4) {
$longitud = 4;
}
return bin2hex(openssl_random_pseudo_bytes(($longitud - ($longitud % 2)) / 2));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment