徳丸本より引用。PHPのrand()を使うより予測困難性が高いらしい。
<?php
function getToken() {
$s = file_get_contents('/dev/urandom', false, NULL, 0, 24);
return base64_encode($s);
}
おそらくrand()を使うよりは遅いので、セキュリティ用途のものを作るときだけ、など使い分けるといい。
Go to list of users who liked
More than 5 years have passed since last update.
徳丸本より引用。PHPのrand()を使うより予測困難性が高いらしい。
<?php
function getToken() {
$s = file_get_contents('/dev/urandom', false, NULL, 0, 24);
return base64_encode($s);
}
おそらくrand()を使うよりは遅いので、セキュリティ用途のものを作るときだけ、など使い分けるといい。
Register as a new user and use Qiita more conveniently
Go to list of users who liked