I want to be able to find out the date for last Wednesday. If today is Wednesday, then I want to get that date. So far I have:

Code:
if (date('D') == 'Wed') {
    echo date('Y-m-d');
} else {
    //$last = 
    echo "Last Wednesday was $last";
}
Any ideas?