Skip to content

Instantly share code, notes, and snippets.

@elfacht
Last active January 19, 2022 19:33
Show Gist options
  • Save elfacht/1c0c9c230f838579e741e9deeaf31cdd to your computer and use it in GitHub Desktop.
Save elfacht/1c0c9c230f838579e741e9deeaf31cdd to your computer and use it in GitHub Desktop.
Generate random key in PHP
<?php
$activation_key = mt_rand() . mt_rand() . mt_rand() . mt_rand() . mt_rand();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment