雨になりそうな雲行き
gmdate("Y年m月d日", time()+9*3600); // 今日の日付
gmdate("Y年m月d日", time()-15*3600); // 昨日の日付
とした時の「一昨日の日付」の求め方は
gmdate("Y年m月d日", time()-39*3600); // 一昨日の日付
若しくは
date("Y年m月d日", time()); // 今日の日付
date("Y年m月d日", time()-24*3600); // 昨日の日付
date("Y年m月d日", time()-48*3600); // 一昨日の日付
でもOK