12
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

指定した確率でtrue/falseを取得

Last updated at Posted at 2012-02-15
kakuritu.php
/**
 * 指定した確率でtrue/falseを取得
 * @param integer $prob 確率(1~100)
 */
function kakuritu($prob=100) {
	if ($prob < 1 || $prob > 100) {
		$prob = 100;
	}
	$rnd = mt_rand(1, 100);
	if ($rnd <= $prob) {
		return true;
	} else {
		return false;
	}
}
12
12
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?