如何在一定时间内运行代码

时间:2012-08-18 04:36:44

标签: php

在我的脚本中,我希望在某个百分比的时间内运行某些代码,我查看了StackOverflow并找到了下面的代码。它在33%的时间内运行代码,我需要修改什么才能让它在55%和70%的时间内运行?

$max = 27;

for($i = 1; $i < $max; $i++){
if($i % 3 == 0){
        call_function_here();
    }
}

2 个答案:

答案 0 :(得分:7)

最简单的方法是使用随机数生成器并测试其结果是否小于(或大于,无关紧)您要定位的数量。

function percentChance($chance){
  // Notice we go from 0-99 - therefore a 100% $chance is always larger
  $randPercent = mt_rand(0,99);
  return $chance > $randPercent;
}

...

if(percentChance(30)){
  // 30% of page loads will enter this block
}

if(percentChance(100)){
  // All page loads will enter this block
}

if(percentChance(0)){
  // No chance this block will ever be entered
}

答案 1 :(得分:-1)

由于所选金额必须保持不变,您可以这样做:

$max = 27;
$num_selections = round(27 * (55 / 100));
$keys = array_rand($max, $num_selections);
for ($keys as $key) {
    // Do something with the chosen key
}