$first = "Text 1"
$second = "Text 2"
$third = "Text 3"
$fourth = "Text 4"
$fifth = "Text 5"
我想創建一個函數,它顯示$ second和$第四次的次數比其他變量多3倍。顯示變量恰好是其他變量的3倍
如何做到這一點?
$first = "Text 1"
$second = "Text 2"
$third = "Text 3"
$fourth = "Text 4"
$fifth = "Text 5"
我想創建一個函數,它顯示$ second和$第四次的次數比其他變量多3倍。顯示變量恰好是其他變量的3倍
如何做到這一點?
$arr = array($first, $second, $second, $second, $third, $fourth, $fourth, $fourth, $fifth);
$elem = $arr[array_rand($arr)];
這會從數字到您的變量
值我試着用概率工作,但發現了,這是不是我想要的,因爲它是隨機的是被選擇哪些文本。所以現在我被困在做什麼。 – Emil
我不明白你的問題 – David
他們出現的順序有關係嗎? – andrewsi