You are here

function date_gmdate in Date 6

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

Like date_date with no GMT conversion.

3 calls to date_gmdate()
DatePHP4LibTest::testPHP4DateLibrary in tests/date_test.test
date_is_dst in date_php4/date_php4.inc
Check if time is in Daylight Savings Time
date_test_date in tests/date_test.test

File

date_php4/date_php4.inc, line 881

Code

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