复代码 代码如下:
$setting = array(
// 黑color概率
0 => 0.99,
// 白color概率
1 => 0.01,
);
// GD 라이브러리 필요
header("콘텐츠 유형: image/png");
$im = imagecreatetruecolor(256, 256) 또는 die("새 GD 이미지 스트림을 초기화할 수 없습니다.");
$white = imagecolorallocate($im, 255, 255, 255);
$start = 마이크로타임(true);
for ($y=0; $y<256; $y ) {
for ($x=0; $x<256; $x ) {
if (random($setting) == = 1) {
imagesetpixel($im, $x, $y, $white);
}
}
}
$time = 마이크로타임(true) - $start;
header("X-실행 시간: ".$time);
imagepng($im);
imagedestroy($im);
/**
* 전체 확률 계산
*
* @param array $p array('a'=>0.5,'b'=>0.2,'c'=>0.4)
* @return string 위 배열의 키를 반환합니다.
* @author Lukin
function random($ps){
static $arr = array(); $key = md5(직렬화($ps));
if (!isset($arr[$key])) {
$max = array_sum($ps);
foreach($ps as $k=>$v) {
$v = $v / $max * 10000;
for ($i=0; $i<$v; $i ) $arr[$key][] = $k;
}
}
return $arr[$key][mt_rand(0,count($arr[$key])-1)];
}
?>