tryphp_func_date_interval_format.php:
format("Total number of days: %a."); echo "
"; // %R outputs + beacause $date2 is after $date1 (a positive interval) echo $diff->format("Total number of days: %R%a."); echo "
"; // %d outputs the number of days that is not already covered by the month echo $diff->format("Month: %m, days: %d."); ?>
Total number of days: 40.
Total number of days: +40.
Month: 1, days: 9.