How would i rewrite this line of code to not use a split() in php?

Blue

New member
list($day, $month, $year) = split('-', $birthday);

It says to me "Deprecated: Function split() is deprecated". So how could i rewrite this?
 
Back
Top