PHP gmmktime() Function
Complete PHP Date Reference
Definition and Usage
The gmmktime() function returns a Unix timestamp for a GMT date.
Syntax
|
gmmktime(hour,minute,second,month,day,year,is_dst)
|
| Parameter |
Description |
| hour |
Optional. Specifies the hour |
| minute |
Optional. Specifies the minute |
| second |
Optional. Specifies the second |
| month |
Optional. Specifies the numerical month |
| day |
Optional. Specifies the day |
| year |
Optional. Specifies the year. The valid range for year is on some
systems between 1901 and 2038. However this limitation is overcome in PHP 5 |
| is_dst |
Optional. Set this parameter to 1 if the time is during daylight savings
time (DST), 0 if it is not, or -1 (the default) if it is unknown. If it's
unknown, PHP tries to find out itself (which may cause unexpected results).
Note: This parameter became deprecated in PHP 5. The new
timezone handling features should be used instead |
Tips and Notes
Tip: This function is identical to mktime() except the passed parameters
represents a GMT date.
Example
<?php
$my_birthday = gmmktime(0,0,0,10,3,1975);
print($my_birthday . "<br />");
print(date("M-d-Y",$my_birthday));
?>
|
The output of the code above would be:
Complete PHP Date Reference

Need an easy way to get data into XML, or transform XML to another format?
MapForce lets you map XML data to/from any combination of XML, database, flat file, Excel 2007, XBRL, or Web services data.
Then it transforms data instantly or auto-generates royalty-free data integration code for recurrent conversions.
New features in Version 2010!
Download a free, fully functional 30-day trial to experience the following features:
- Easy-to-use, graphical data mapping interface
- Instant data transformation
- XSLT 1.0/2.0 and XQuery code generation
- Java, C#, and C++ code generation
- Advanced data processing functions
- Support for all major relational databases including SQL Server, IBM DB2, Oracle, and more
- Visual Studio & Eclipse integration
Download a fully-functional trial today!
|
|
|
|