diff options
author | Nils Adermann <naderman@naderman.de> | 2011-07-16 22:05:03 -0400 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2011-07-16 22:05:03 -0400 |
commit | 0f86034f03c8b81883aed2345d88d197f72c7491 (patch) | |
tree | 0529f9d57b59752d98a303321876d5ccc42e99e0 /phpBB/includes/functions.php | |
parent | b3cdd1d16981c5992d1bffb97786084f9f02cad1 (diff) | |
parent | 0e85704d75c2edefdbdfb9d5542ab366744e65fb (diff) | |
download | forums-0f86034f03c8b81883aed2345d88d197f72c7491.tar forums-0f86034f03c8b81883aed2345d88d197f72c7491.tar.gz forums-0f86034f03c8b81883aed2345d88d197f72c7491.tar.bz2 forums-0f86034f03c8b81883aed2345d88d197f72c7491.tar.xz forums-0f86034f03c8b81883aed2345d88d197f72c7491.zip |
Merge remote-tracking branch 'github-bantu/ticket/10243' into develop-olympus
* github-bantu/ticket/10243:
[ticket/10243] Adding a few unit tests for phpbb_gmgetdate().
[ticket/10243] Call phpbb_gmgetdate() from various places.
[ticket/10243] Adding wrapper function for getdate() for UTC timestamps.
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index b1c1c14d0c..86eab4666f 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -266,6 +266,27 @@ function phpbb_mt_rand($min, $max) } /** +* Wrapper for getdate() which returns the equivalent array for UTC timestamps. +* +* @param int $time Unix timestamp (optional) +* +* @return array Returns an associative array of information related to the timestamp. +* See http://www.php.net/manual/en/function.getdate.php +*/ +function phpbb_gmgetdate($time = false) +{ + if ($time === false) + { + $time = time(); + } + + // getdate() interprets timestamps in local time. + // What follows uses the fact that getdate() and + // date('Z') balance each other out. + return getdate($time - date('Z')); +} + +/** * Return formatted string for filesizes * * @param int $value filesize in bytes |