I've looked at the docs and didn't see a built-in function to do this, but if there is one, please let me know. I'd like to be able to split a string into an array based on a character. Like so:
$str = '04:25:39';
$arr = someFunc($str);
$arr[0] = '04';
$arr[1] = '25';
$arr[2] = '39';
If there isn't one, I'm sure I could write one, but why reinvent the wheel... Any info would be teh awesome!
James