-2

所以我有一个foreach,我想插入一些html,每说6次或者11次循环运行。

所以我在每 13 条记录上插入

if ($i % 13 == 0) { 
}

麻烦的是我想给它增加一点随机性。

也完全忘记了这个叫什么

4

1 回答 1

2

这样的事情将使一些代码$percentage在每个循环的时间执行。例如,您可以设置$percent = 20然后您的代码每次迭代仅执行 20% 的时间。

$value = rand( 0, 100 ); // Set your ranges (min/max)
$percent = 0; // Set percentage

if ( $percent >= $value )
{
    // Will only execute $percentage of the time each loop
}
于 2012-06-14T22:58:59.047 回答