WordPress:Function Reference/current time

来自站长百科
Fludlen讨论 | 贡献2008年7月22日 (二) 11:55的版本
跳转至: 导航、​ 搜索

Description

描述

Returns the current time or timestamp. The time returned will be the server time + the offset in the options page, and it will be equivalent to the time displayed on the options page itself.

返回当前时间或者时间标记。返回的时间会是选项网页中的erver time + the offset,而且这个时间与选项网页上显示的时间是等同的。

Usage

用法

%%% <?php echo current_time($type, $gmt = 0); ?> %%%

%%% <?php echo current_time($type, $gmt = 0); ?> %%%

Example

例子

Usage

用法

Get the current system time in two formats. 得到两种格式的当前系统时间。

<?php echo('Current time: ' . current_time('mysql') . '<br />'); ?>
<?php echo('Current timestamp: ' . current_time('timestamp')); ?>
Current time: 2005-08-05 10:41:13
Current timestamp: 1123238473


<?php echo('Current time: ' . current_time('mysql') . '<br />'); ?>
<?php echo('Current timestamp: ' . current_time('timestamp')); ?>
Current time: 2005-08-05 10:41:13
Current timestamp: 1123238473

Parameters

参数