Hi! Could we please enable some services and cookies to improve your experience and our website?
Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code
<?php
function default_ca_bundle()
{
return 'result';
}
echo default_ca_bundle();
$sdate=date("Y-m-d H:i:s", mktime(0,0,0,10,3,2013));
$date2=date_create($sdate);
$date1=date_create("2513-12-12");
$diff=date_diff($date1,$date2);
date_add($date1,1);
echo date_format($date1,"Y-m-d H:i:s");
echo "\n\n".$sdate;
print_r( $diff);