Interview Questions

How can we know the number of days between two given dates using PHP?

PHP Interview Questions and Answers


(Continued from previous question...)

How can we know the number of days between two given dates using PHP?

Simple arithmetic:

$date1 = date('Y-m-d');
$date2 = '2006-07-01';
$days = (strtotime() - strtotime()) / (60 * 60 * 24);
echo "Number of days since '2006-07-01': $days";

(Continued on next question...)

Other Interview Questions