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.
我将如何将以下变量更改为时间戳?
$timenow = date('l jS \of F Y h:i:s A');
由于我对 PHP 还很陌生,请尽可能保持简单的答案...在此先感谢!
更新
我有日期();数据库中指定的格式,并希望从数据库中获取单元格并将其转换为 time();
我知道有两种方法。用这个 :
$timenow = date('Y-m-d H:i:s'); $timestamp = strtotime($timenow); echo 'time : ' . $timenow . '<br />'; echo 'MY test : ' . $timestamp;
我的输出刚刚执行:
time : 2013-09-08 15:31:59 MY test : 1378647119
或这个:
$timestamp = time();
好吧,该代码会根据当前时间戳生成一个日期,所以只需这样做:
$timenow = time();
time()为您提供当前的 Unix 时间戳。或者,您可以使用strtotime:
time()
strtotime
$timestamp = strtotime($timenow);