Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Generate a random integer
<?php rand(): int
<?php class Test {



    function number() {

        return 'Random: ' . rand(0, 10);

    }



    function text() {