문제

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?

도움이 되었습니까?

해결책

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.

다른 팁

Use explode() instead of split().

like this:

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

You can use explode instead

$arr=explode("/:/", $departure_time);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top