nombre aleatoire php code example
Example 1: php rand int
random_int ( int $min , int $max );
Example 2: php nombre de caractère
<?php
$str = 'abcdef';
echo strlen($str); // 6
$str = ' ab cd ';
echo strlen($str); // 7
?>
random_int ( int $min , int $max );
<?php
$str = 'abcdef';
echo strlen($str); // 6
$str = ' ab cd ';
echo strlen($str); // 7
?>