Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我正在构建自己的 php 应用程序,我是 php 初学者,所以当我想获取用户执行特定操作的时间时,我使用 NOW() 函数来获取它,但我的问题是如何转换我从 mysql NOW() 函数得到的值到时间戳
PHP 有一个函数可以将日期字符串转换为时间戳,它被称为:strtotime().
strtotime()
http://php.net/manual/de/function.strtotime.php
SELECT TIMESTAMP( NOW() )
这应该为您提供时间戳;)
或者,在 PHP 中:
$now = strtotime($dbdata->currentDate);
更好的是,在 MySQL 中完成所有操作:
SELECT UNIX_TIMESTAMP( NOW() );