I have 2 timestamps (like 3434368673) an want to get the days between them. How can I do that?
Thanks!
$days = (int) ( abs($timestampA - $timestampB) / ( 60 * 60 * 24 ) );
Use the Julian Day
$days = unixtojd($t1) - unixtojd($t2);