如何获取我的约会时间戳

时间:2013-07-29 17:51:08

标签: wordpress timestamp

下面的当前代码返回我在wordpress中的当前本地时间,结果如下所示。 2013-07-29 13:45:42

我需要将其转换为时间戳格式。请问是什么答案?

echo date_i18n( 'Y-m-d H:i:s', current_time( 'timestamp', 0 ) );

2 个答案:

答案 0 :(得分:4)

PHP strtotime()功能可能有用。

$timestamp = strtotime('2013-07-29 13:45:42');

修改 这是你的用例

$current_date = date('Y-m-d H:i:s'); ## Get current date
$timestamp = strtotime($current_date); ## Get timestamp of current date
echo $timestamp; ## Print timestamp

答案 1 :(得分:0)

快来找出我真的只需要实际的日期而不是时间戳来实现我的目标。因此,使用此功能可以在管理面板的设置页面上设置wordpress当前时间。

date_i18n('Y-m-d');