我知道如何编写旋转器,但我怎样才能制作一个跳过传递空 $stuff_link 变量的旋转器?
我有 4 个链接变量,如下所示,但有时它们是空白的。所以我需要做的是使用旋转器在 4 个变量之间旋转,但如果说 $stuff_link 是空白跳过它。
$stuff_link
$stuff_link2
$stuff_link3
$stuff_link4
下面的代码是我将它放在里面的地方。
if(percentChance(35) && $stuff_status == 1)
{
rotator goes here
}
下面是 percentChance 的函数
function percentChance($chance){
// Notice we go from 0-99 - therefore a 100% $chance is always larger
$randPercent = mt_rand(0,99);
return $chance > $randPercent;
}