Hello everyone I am stuck in php functions I am not getting the variable data outside from the function in php as i am new in php so please don't refer me to any other question thank you my code is.
<?php
function variables()
{
$var = rand(1111,9999);
$var2 = rand(11111,99999);
$var3 = rand(111111,999999);
}
echo variables([$var]);
echo variables([$var2]);
echo variables([$var3]);
?>