我知道如何編寫一個旋轉編碼,但我怎麼能讓一個跳過傳遞空的$ 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;
}
在存儲你的「東西」數組會走很長的路。 – meagar