PHP現在時刻の計算後(直前)の時間


PHPには非常にすごい関数、strtotime()関数があります.この関数には異常にすごい使い方があります.マニュアルにはありますが、実際の応用で考えられる人は少ないと思います.
次の列を見てください.

          “+”,        “-”    !

strtotime(”+1 week”)             

strtotime(”-1 week”)             

strtotime(”+1 months”)        

strtotime(”+5 days”)     5   

strtotime(”+12 hours”)   12     

strtotime(”+20 minutes”) 20    

strtotime(”+30 seconds”) 30   

strtotime(”Last  Saturday“)       

strtotime(”Next Saturday”)    

date('Y-m-d' , strtotime('next monday' , strtotime('2015-05-04')));

2015-05-04      

date(”Y-m-d H:i:s”,strtotime(”+1 months +1 week +3 days +4 hours +16 minutes +32 seconds”));

          ,   , 4   16  32