>  기사  >  백엔드 개발  >  webgame PHP全概率运算函数优化版 Webgame开发必备

webgame PHP全概率运算函数优化版 Webgame开发必备

WBOY
WBOY원래의
2016-07-29 08:46:04975검색

复制代码 代码如下:


$setting = array(
// 黑色概率
0 => 0.99,
// 白色概率
1 => 0.01,
);
// Requires the GD Library
header("Content-type: image/png");
$im = imagecreatetruecolor(256, 256) or die("Cannot Initialize new GD image stream");
$white = imagecolorallocate($im, 255, 255, 255);
$start = microtime(true);
for ($y=0; $yfor ($x=0; $xif (random($setting) === 1) {
imagesetpixel($im, $x, $y, $white);
}
}
}
$time = microtime(true) - $start;
header("X-Exec-Time: ".$time);
imagepng($im);
imagedestroy($im);
/**
* 全概率计算
*
* @param array $p array('a'=>0.5,'b'=>0.2,'c'=>0.4)
* @return string 返回上面数组的key
* @author Lukin
*/
function random($ps){
static $arr = array(); $key = md5(serialize($ps));
if (!isset($arr[$key])) {
$max = array_sum($ps);
foreach ($ps as $k=>$v) {
$v = $v / $max * 10000;
for ($i=0; $i}
}
return $arr[$key][mt_rand(0,count($arr[$key])-1)];
}
?>


黑点出现概率99%,白点出现概率1%,测试结果:
 PHP全概率运算函数优化版 Webgame开发必备
 PHP全概率运算函数优化版 Webgame开发必备

以上就介绍了webgame PHP全概率运算函数优化版 Webgame开发必备,包括了webgame方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.