Answers for "php randow"

PHP
4

php random number

rand(0,10);
or
random_int(0,10)
Posted by: Guest on October-03-2020
8

php random number

// $min and $max are optional
rand($min,$max);
Posted by: Guest on April-14-2020
0

php random

mt_rand(1000, 9999)
Posted by: Guest on April-16-2021
-1

php random number

<?php
// src/Controller/LuckyController.php
namespace App\Controller;

use Symfony\Component\HttpFoundation\Response;

class LuckyController
{
    public function number(): Response
    {
        $number = random_int(0, 100);

        return new Response(
            '<html><body>Lucky number: '.$number.'</body></html>'
        );
    }
}
Posted by: Guest on March-30-2022

Browse Popular Code Answers by Language