php preg_split w/regex
Posted
by 102319141763223461745
on Stack Overflow
See other posts from Stack Overflow
or by 102319141763223461745
Published on 2010-06-13T20:06:48Z
Indexed on
2010/06/13
20:12 UTC
Read the original article
Hit count: 140
returned:
Array ( [0] => Array ( [0] => 17:30 Football 18:30 Meal 20:00 Quiet [1] => 0 ) )
while I was hoping for:
Array ( [0] => Array ( [0] => Football [1] => 7 ) [1] => Array ( [0] => Meal [1] => 22 ) etc.
What can I do?
© Stack Overflow or respective owner