php日付 一覧 でもちょっとあやしい

<?php
print “1日前 “.date(“Ymd”,strtotime(“-1 day”)).”n”;//1日前
print “1週間前 “.date(“Ymd”,strtotime(“-1 week”)).”n”; //1週間前
print “13月前 “.date(“Ymd”,strtotime(“-13 month”)).”n”; //1月前
print “1年前 “.date(“Ymd”,strtotime(“-1 year”)).”n”; //1年前
print “1日後 “.date(“Ymd”,strtotime(“1 day”)).”n”; //1日後
print “1週間後 “.date(“Ymd”,strtotime(“1 week”)).”n”; //1週間後
print “1月後 “.date(“Ymd”,strtotime(“1 month”)).”n”; //1月後
print “1年後 “.date(“Ymd”,strtotime(“1 year”)).”n”; //1年後
?>