Question

I wanted to do something like this:

list($hour, $minute) = split("/:/", $departure_time);

however it says split() is deprecated why is this? What am I doing wrong?

Was it helpful?

Solution

split belongs to the ereg class functions, which have been superseded by preg_match and preg_split.

You should be using explode() anyway, since you only have a static string, not an actual matching pattern with variable placeholders.

OTHER TIPS

Use explode() instead of split().

like this:

$array = explode(':', $string);

You can use explode instead

$arr=explode("/:/", $departure_time);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top