当前位置:  开发笔记 > 编程语言 > 正文

每次在PHP中只有5个数字

如何解决《每次在PHP中只有5个数字》经验,为你挑选了1个好方法。



1> Chris..:

我不会在这里使用for循环,而是执行while循环,直到随机数数组达到所需的计数.您的问题是,$i无论您是否添加$rand到阵列,都会继续增加.

$col_B = array();

while( count($col_B) < 5 ) 
{
    $rand = $col_ranges['B'][rand ( 0 , 14 )]; // calls to an array of number

    if( ! in_array($rand, $col_B) )
        $col_B[] = $rand;
}

推荐阅读
手机用户2402852307
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有