Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created October 16, 2019 01:59
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/36dead344f1129ce164f7d1cd98507b3 to your computer and use it in GitHub Desktop.
Save parzibyte/36dead344f1129ce164f7d1cd98507b3 to your computer and use it in GitHub Desktop.
<?php
function digitosAleatorios($longitud = 4)
{
$caracteres = '0123456789';
$cadenaAleatoria = '';
for ($i = 0; $i < $longitud; $i++) {
$cadenaAleatoria .= $caracteres[rand(0, strlen($caracteres) - 1)];
}
return $cadenaAleatoria;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment