Home  >  Article  >  Backend Development  >  Welfare Lottery Lucky Number Automatic Generator_PHP Tutorial

Welfare Lottery Lucky Number Automatic Generator_PHP Tutorial

WBOY
WBOYOriginal
2016-07-21 16:03:491138browse

It is completely randomly designed using PHP. Every time it is refreshed, there will be different lucky numbers. Give it a try and don’t forget neo when you get rich~~~
for ($n=1;$n<= 5;$n++) {
echo "No.".$n."Note";
$string="";//Initialization string
for ($i=1;$i<=7 ;$i++) {
mt_srand((double)microtime()*1000000);//Add the time factor to the millionth of a second during execution as the random number seed
$random=mt_rand(1, 30);//Generate a random number between 1-30
if (eregi($random,$string)){//Check whether this number already exists
$i--;
continue;/ /Jump out of the loop and return to the starting point of judgment.
}
else{
$string=$string.",".$random;
echo $random," ";}
}
echo "
" ;
}
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/316130.htmlTechArticleUsing PHP completely random design, each refresh has different lucky numbers, give it a try, don’t forget it if you get rich neo~~~ ?php for ($n=1;$n=5;$n++) { echo No.$n.Note; $string=;//Initialization string...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn