Forum Moderators: coopster
<?php
$timestamp = time();
$todayday = date("w", $timestamp);
$sundayoffset = 60 * 60 * 24 * $todayday;
$lastsunday = $timestamp - $sundayoffset;
$filename = date("Y_m_d", $lastsunday) . ".";
echo("The sunday that just happened was " . $filename);
?> $lastmonday = strtotime('last monday'); <?php
$timestamp = time();
$todayday = date("w", $timestamp);
$sundayoffset = 60 * 60 * 24 * $todayday;
$lastsunday = $timestamp - $sundayoffset;
$filename = date("Y_m_d", $lastsunday) . ".";
echo("The sunday that just happened was " . $filename);
?>