hola..
esta es una idea para que te guies...
Código PHP:
Ver originalfunction getCartones()
{
$fnNumbers = function()
{
for($i2 = 1 ; $i2 <= 99 ; $i2++)
{
$n[] = $i2;
}
return $n;
};
$numbers = $fnNumbers();//arreglo con los numeros aleatorios posibles
$totCartones = floor(count($numbers)/15); //cantidad de cartones a crear
function fnCarton
($list,$numbers=array()) {
{
for($row = 1 ; $row <= 15 ; $row++)
{
{
$list[] = $nro;
}
{
return fnCarton($list,$numbers);
}
else
{
return $list;
}
};//fin for
}
};
for($ic = 0 ; $ic < $totCartones ; $ic++)
{
$list = array();//arreglo con los 15 numeros posibles por carton $dataCartones[] = fnCarton($list,$numbers);
}
return $dataCartones;
};
$car =getCartones();