[分享] 大樂透程式 - 22億開獎號碼預測
剛剛去買樂透想要自己選號,但是想不出來要寫什麼號碼
於是就寫了一支簡單的樂透選號程式,分享給大家
可以上去玩玩看,祝大家都能順利中大獎。
demo位置:
http://www.huijun.org/lotto/
程式碼:
<?php
function Lotto($times) {
global $number;
if ($times > 6) {
for ($i=0;$i<7;$i++) {
if ($i==6) echo ' ';
echo ' <img src="images/'.$number[$i].'.gif">';
}
}
else {
$rand_number = rand(1,49);
for ($i=0;$i<7;$i++) {
if ($number[$i]!=$rand_number) {
$check = false;
}
else {
$check = true;
break;
}
}
if (!$check) {
$number[$times] = $rand_number;
$times = $times+1;
}
lotto($times);
}
}
Lotto(0);
?>
--
http://www.huijun.org/
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 203.95.196.252
推
12/28 18:10, , 1F
12/28 18:10, 1F
推
12/29 07:16, , 2F
12/29 07:16, 2F
PHP 近期熱門文章
PTT數位生活區 即時熱門文章