MySQL时间戳与日期格式的相互转换
程序员文章站
2022-03-18 16:37:26
MySQL时间戳与日期格式的相互转换,PHP时间戳与日期格式的相互转换 MySQL: 获取当前时间 时间日期格式转换成时间戳格式,UNIX_TIMESTAMP() 时间戳格式转换成时间日期格式,FROM_UNIXTIME() PHP: 获取当前时间戳 时间戳格式转换成时间日期格式 时间日期格式转换成 ......
mysql时间戳与日期格式的相互转换,php时间戳与日期格式的相互转换
mysql:
- 获取当前时间
select now(); // 2018/10/11 14:22:51
- 时间日期格式转换成时间戳格式,unix_timestamp()
select unix_timestamp(now()); // 1539238930
- 时间戳格式转换成时间日期格式,from_unixtime()
select from_unixtime(1539238971); // 2018/10/11 14:22:51
php:
- 获取当前时间戳
time(); // 1539238975
- 时间戳格式转换成时间日期格式
date('y-m-d h:i:s', time()); // 2018-10-11 14:24:06
- 时间日期格式转换成时间戳格式
strtotime('2018-10-11 14:24:06'); // 1539239046
上一篇: MyBatis常见报错问题及解决方案
下一篇: Go基础编程实践(九)—— 网络编程