Skip to content

Instantly share code, notes, and snippets.

@abaykan
Created November 18, 2019 06:39
Show Gist options
  • Save abaykan/5da62265cd785af7ba5f7397c5915548 to your computer and use it in GitHub Desktop.
Save abaykan/5da62265cd785af7ba5f7397c5915548 to your computer and use it in GitHub Desktop.
<?php
function random($length) {
$characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
$charactersLength = strlen($characters);
$randomString = '';
for ($i = 0; $i < $length; $i++) {
$randomString .= $characters[rand(0, $charactersLength - 1)];
}
return $randomString;
}
// echo random(5);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment