wata_tempora
2008-11-18 18:31:14 UTC
and I need to make a function for getting the numbers in the String separated by a comma and put it in an array. I tried using Split(",",$String) but cannot access the array, can anyone help? Thanks
for example
$str = "1,2,3,4,5";
$array = getnumber($str);
echo $array[0];
echo $array[3];
etc...