hey there, i have the following string:
$str = "HEMSKY, ALES +1 15:33 18 :51 6:31 0:05 8:57 1 1"
and i want to use preg_split to break it into separate array elements.... i think the following code should work, but it doesnt
$str = "HEMSKY, ALES +1 15:33 18 :51 6:31 0:05 8:57 1 1"
$array = preg_split("/[,\s]/", $str, 8)
nothing gets returned.... what am i doing wrong?