dongsuoxi1790 2014-01-08 08:27
浏览 520
已采纳

random()函数返回1到10之间的整数

how to Ensure that it can not return one of the values ​​in the array $ excluded.

This is my code

$exclus=array(1,4);
function ramdom(){
   $resultat=rand(1,10);
   return $resultat;
}

echo "Random Num : ".random()."
";
  • 写回答

4条回答 默认 最新

  • drmticpet66231422 2014-01-08 08:28
    关注

    try this:

    function randWithout($from, $to, array $exceptions) {
        sort($exceptions); // lets us use break; in the foreach reliably
        $number = rand($from, $to - count($exceptions)); // or mt_rand()
        foreach ($exceptions as $exception) {
            if ($number >= $exception) {
                $number++; // make up for the gap
            } else /*if ($number < $exception)*/ {
                break;
            }
        }
        return $number;
    }
    

    and call it:

    $exclus=array(1,4);
    $random_number = randWithout(0,10,$exclus);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度