Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created October 16, 2019 01:58
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/7c9d11e3fd6fc088260ea51d9ecc897b to your computer and use it in GitHub Desktop.
Save parzibyte/7c9d11e3fd6fc088260ea51d9ecc897b to your computer and use it in GitHub Desktop.
<?php
function cadenaAleatoria($longitud = 10)
{
$caracteres = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
$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