Mega Code Archive

 
Categories / Php / Data Type
 

Breaking Strings into Arrays with explode()

<?php     $start_date = "2000-01-12";     $date_array = explode ("-",$start_date); ?>