Rumah > Artikel > pembangunan bahagian belakang > PHP实现针对日期,月数,天数,周数,小时,分,秒等的加减运算的方法
这篇文章主要介绍了PHP实现针对日期,月数,天数,周数,小时,分,秒等的加减运算,结合实例形式分析了基于strtotime的简单日期时间运算技巧,非常具有实用价值,需要的朋友可以参考下
其实就是strtotime
这个内置函数
//PHP 日期 加减 周 date("Y-m-d",strtotime("2013-11-12 +1 week")) //PHP 日期 加减 天数 date("Y-m-d",strtotime("2013-11-12 12:12:12 +1 day")) //PHP 日期加减小时 date("Y-m-d h:i:s",strtotime("2013-11-12 12:12:12 +1 hour")) //PHP 日期 加减 月数 date("Y-m-d",strtotime("2013-11-12 12:12:12 +1 month")) //PHP 日期 加减 分 date("Y-m-d h:i:s",strtotime("2013-11-12 12:12:12 +1 minute")) //PHP 日期 加减 秒 date("Y-m-d h:i:s",strtotime("2013-11-12 12:12:12 +1 second"))
以上就是本文的全部内容,希望对大家的学习有所帮助。
相关推荐:
Atas ialah kandungan terperinci PHP实现针对日期,月数,天数,周数,小时,分,秒等的加减运算的方法. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!