<?php
    //打印从1到100中间的10个随机的数
    for($index = 0; $index < 10; $index++)
    {
        print(rand(1,100) . "<BR>\n");
    }
?>

029-PHP取随机数_php