When I use this function in excel
=MOD("06/03/1992";7)
it returns 6
How to make the function in PHP? I try this code in PHP, but the result is different
$today = strtotime("06-03-1992");
$mod = ($today/86400) % 7;
echo $mod;
//return 0
Thanks