-3

请,我如何在php中更改日期格式

来自类似 2012-12-14 08:40:26

格式化数字,如 28124629523

4

1 回答 1

5

仅供参考,您要查找的内容称为Unix 时间戳

采用strtotime()

echo strtotime('2012-12-14 08:40:26');

或者DateTime

$datetime = new DateTime('2012-12-14 08:40:26');
echo $datetime->getTimestamp();
于 2012-12-14T18:49:35.660 回答