update : 2015.11.03
php.shukuma.com

검색:
 
 
Sets the RNG seed

gmp_random_seed

(PHP 7)

gmp_random_seedSets the RNG seed

설명

mixed gmp_random_seed ( mixed $seed )

인수

seed

The seed to be set for the gmp_random(), gmp_random_bits(), and gmp_random_range() functions.

PHP 5.5 이전에서 GMP 수 resource나, PHP 5.6 이후에서 GMP 객체, 또는 수로 변환할 수 있는 문자열일 수 있습니다.

반환값

Returns NULL on success.

오류/예외

Issues an E_WARNING and returns FALSE if seed is not valid.

예제

Example #1 gmp_random_seed() example

<?php
// set the seed
gmp_random_seed(100);

var_dump(gmp_strval(gmp_random(1)));

// set the seed to something else
gmp_random_seed(gmp_init(-100));

var_dump(gmp_strval(gmp_random_bits(10)));

// set the seed to something invalid
var_dump(gmp_random_seed('not a number'));

위 예제의 출력:

string(20) "15370156633245019617"
string(3) "683"

Warning: gmp_random_seed(): Unable to convert variable to GMP - string is not an integer in %s on line %d
bool(false)

참고