You are here

function date_gmdate in Date 5.2

Same name and namespace in other branches
  1. 5 date.inc \date_gmdate()
  2. 6.2 date_php4/date_php4.inc \date_gmdate()
  3. 6 date_php4/date_php4.inc \date_gmdate()

Like date_date with no GMT conversion.

2 calls to date_gmdate()
DatePHP4LibTest::testPHP4DateLibrary in tests/date_test.test
date_test_date in tests/date_test.test

File

date_php4/date_php4.inc, line 915

Code

function date_gmdate($format, $timestamp = false, $test = false) {
  return date_date($format, $timestamp, 'UTC', $test);
}