Deprecated: Function split() is deprecated. How to rewrite this statement?

I think you want preg_split.

list($year, $month, $day, $hour, $min, $sec) = preg_split('/[: -]/', $post_timestamp);

Leave a Comment