How to save dates older than timestamp in PHP

前端 未结 3 857
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-15 16:57

This should be an easy one but I just can\'t find the answer.

I have an input field in which the user enters his birthay date (DD.MM.YYYY) and with strtotime() I ins

3条回答
  •  不知归路
    2021-01-15 17:03

    You should use the DateTime object when handling dates and times in PHP. It is very flexible when parsing date formats, it can calculate the difference between two dates and it has no 1970 or 2038 problem.

提交回复
热议问题