103_Date_parse ( fetch all data info for a given date )Array
(
[year] => 2015
[month] => 3
[day] => 15
[hour] => 12
[minute] => 30
[second] => 25
[fraction] => 0.5
[warning_count] => 0
[warnings] => Array
(
)
[error_count] => 0
[errors] => Array
(
)
[is_localtime] =>
)
15Array
(
[year] =>
[month] => 15
[day] => 15
[hour] =>
[minute] =>
[second] =>
[fraction] =>
[warning_count] => 0
[warnings] => Array
(
)
[error_count] => 1
[errors] => Array
(
[8] => Not enough data available to satisfy format
)
[is_localtime] =>
)
Array
(
[year] => 2015
[month] => 3
[day] => 15
[hour] =>
[minute] =>
[second] =>
[fraction] =>
[warning_count] => 0
[warnings] => Array
(
)
[error_count] => 0
[errors] => Array
(
)
[is_localtime] =>
)
<?php
// 103_Date_parse ( fetch all data info for a given date )
echo "</br><span class='myheading'>103_Date_parse ( fetch all data info for a given date )</span></br>";
/*------Date Parse Function------- */
echo "<pre>";
print_r(date_parse("2015-03-15 12:30:25.5")); // return all info of the date in aA array
echo "</pre>";
$date = date_parse("2015-03-15 12:30:25.5");
echo $date['day']; // display date only
/*------Date Parse Form Format Function------- */
echo "<pre>";
print_r(date_parse_from_format("mmddyyyy","11152015"));
echo "</pre>";
echo "<pre>";
print_r(date_parse_from_format("d.n.Y","15.3.2015")); // display only the requied in aA array
echo "</pre>";
?>