Skip to content

Instantly share code, notes, and snippets.

@PyramisDev
Created October 2, 2013 23:32
Show Gist options
  • Save PyramisDev/6802114 to your computer and use it in GitHub Desktop.
Save PyramisDev/6802114 to your computer and use it in GitHub Desktop.
85 character string generator
<?php
function haha()
{
$a = uniqid();
$b = sha1(uniqid());
$c = md5(uniqid());
$d = $a . $b . $c;
return $d;
}
echo haha();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment