标签: php format
请问,我如何在php中更改日期格式
来自2012-12-14 08:40:26
格式化数字,如28124629523
答案 0 :(得分:5)
仅供参考,您正在寻找的是Unix Timestamp
使用strtotime()
strtotime()
echo strtotime('2012-12-14 08:40:26');
或DateTime
DateTime
$datetime = new DateTime('2012-12-14 08:40:26'); echo $datetime->getTimestamp();