(PHP 7)
random_bytes — Generates cryptographically secure pseudo-random bytes
$length
)Generates an arbitrary length string of cryptographic random bytes that are suitable for cryptographic use, such as when generating salts, keys or initialization vectors.
この関数が使う不規則性のソースはつぎのとおりです。
注意: この関数は PHP 7.0 で追加されたものですが、PHP 5.2 から 5.6 までのバージョンで使える » ユーザーランドの実装 も公開されています。
length
The length of the random string that should be returned in bytes.
Returns a string containing the requested number of cryptographically secure random bytes.
例1 random_bytes() example
<?php
$bytes = random_bytes(5);
var_dump(bin2hex($bytes));
?>
上の例の出力は、 たとえば以下のようになります。
string(10) "385e33f741"