Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一个foreach,我想插入一些html,每说6次或者11次循环运行。
所以我在每 13 条记录上插入
if ($i % 13 == 0) { }
麻烦的是我想给它增加一点随机性。
也完全忘记了这个叫什么
这样的事情将使一些代码$percentage在每个循环的时间执行。例如,您可以设置$percent = 20然后您的代码每次迭代仅执行 20% 的时间。
$percentage
$percent = 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 }