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