Home > Backend Development > PHP Tutorial > 请问 2015-10-10 直接转换成 Linux 时间戳有没有直接的函数可以转换的?

请问 2015-10-10 直接转换成 Linux 时间戳有没有直接的函数可以转换的?

WBOY
Release: 2016-06-06 20:22:23
Original
1400 people have browsed it

请问 2015-10-10 直接转换成 Linux 时间戳有没有直接的函数可以转换的?

回复内容:

请问 2015-10-10 直接转换成 Linux 时间戳有没有直接的函数可以转换的?

<code>echo strtotime('2015-10-10');</code>
Copy after login

对于strtotime不支持的格式,比如 2015年10月1日 ,则可以:

<code>$arr = date_parse_from_format('Y年m月d日', '2015年10月1日');
echo mktime(0, 0, 0, $arr['month'], $arr['day'], $arr['year']); 
//mktime 参数顺序:时,分,秒,月,日,年</code>
Copy after login

strtotime('2015-10-10')

strtotime('2015-10-10')

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template