PHP 将日期时间转换为秒
我在'2010-12-08 16:12:12'
中有一个日期时间值,我想使用,
所以基本上相当于:mysql
PHP
PHP
mysql
TIME_TO_SEC(TIMEDIFF('2010-12-08 16:12:12',now()))
我在'2010-12-08 16:12:12'
中有一个日期时间值,我想使用,
所以基本上相当于:mysql
PHP
PHP
mysql
TIME_TO_SEC(TIMEDIFF('2010-12-08 16:12:12',now()))
<?php
$date1 = new DateTime("2010-12-08 16:12:12");
$now = new DateTime();
$difference_in_seconds = $date1->format('U') - $now->format('U');
->format('U')
将其转换为 Unix 时间戳。
哼?这些功能来自...mysql
对于 PHP,您可以使用以下命令替换它strtotime
$diff = strtotime('2010-12-08 16:12:12')-time();