How to convert date to timestamp in PHP?

前端 未结 19 2320
暗喜
暗喜 2020-11-22 05:38

How do I get timestamp from e.g. 22-09-2008?

19条回答
  •  耶瑟儿~
    2020-11-22 06:26

    Use PHP function strtotime()

    echo strtotime('2019/06/06');
    

    date — Format a local time/date

提交回复
热议问题