| ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
openssl_random_pseudo_bytes(PHP 5 >= 5.3.0, PHP 7) openssl_random_pseudo_bytes — 疑似乱数のバイト文字列を生成する 説明
string openssl_random_pseudo_bytes
( int
$length
[, bool &$crypto_strong
] )
疑似乱数のバイト文字列を生成します。長さは
暗号学的に強いアルゴリズムを使って疑似乱数を生成したかどうかを知ることもできます。
オプションのパラメータ パラメータ
返り値
成功した場合は指定したバイト長の string を返します。失敗した場合に 例
例1 openssl_random_pseudo_bytes() の例
<?php 上の例の出力は、 たとえば以下のようになります。 Lengths: Bytes: -1 and Hex: 0 string(0) "" NULL Lengths: Bytes: 0 and Hex: 0 string(0) "" NULL Lengths: Bytes: 1 and Hex: 2 string(2) "42" bool(true) Lengths: Bytes: 2 and Hex: 4 string(4) "dc6e" bool(true) Lengths: Bytes: 3 and Hex: 6 string(6) "288591" bool(true) Lengths: Bytes: 4 and Hex: 8 string(8) "ab86d144" bool(true) 参考
|
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「openssl_random_pseudo_bytes - 疑似乱数のバイト文字列を生成する」をGoogle検索
|