下面的当前代码在 wordpress 中返回我当前的本地时间,结果如下所示。2013-07-29 13:45:42
我需要将其转换为时间戳格式。请问答案是什么?
echo date_i18n( 'Y-m-d H:i:s', current_time( 'timestamp', 0 ) );
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
来发现我真的只需要实际日期而不是时间戳来实现我的目标。因此,使用它可以为您提供在管理面板的设置页面上设置的 wordpress 当前本地时间。
date_i18n('Y-m-d');