Skip to content

Instantly share code, notes, and snippets.

@hirak
Created December 28, 2011 13:22
Show Gist options
  • Save hirak/1527921 to your computer and use it in GitHub Desktop.
Save hirak/1527921 to your computer and use it in GitHub Desktop.
/dev/urandomで予測困難なトークンを作成 ref: http://qiita.com/items/1477
<?php
function getToken() {
$s = file_get_contents('/dev/urandom', false, NULL, 0, 24);
return base64_encode($s);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment