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?

Était-ce utile?

La 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.

Autres conseils

Use explode() instead of split().

like this:

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

You can use explode instead

$arr=explode("/:/", $departure_time);
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top