Breaking Strings into Arrays with explode() : explode « Data Structure « PHP
- PHP
- Data Structure
- explode
Breaking Strings into Arrays with explode()
<?php
$start_date = "2000-01-12";
$date_array = explode ("-",$start_date);
?>
Related examples in the same category