function date_getdate in Date 6.2
Same name and namespace in other branches
- 5.2 date_php4/date_php4.inc \date_getdate()
- 5 date.inc \date_getdate()
- 6 date_php4/date_php4.inc \date_getdate()
Returns an array with date info.
Parameters
$timestamp: A unix timestamp.
$timezone name: Use 'UTC' to avoid timezone conversion.
1 call to date_getdate()
- date_gmgetdate in date_php4/
date_php4.inc - Like date_getdate with no GMT conversion.
File
- date_php4/
date_php4.inc, line 871
Code
function date_getdate($timestamp = FALSE, $timezone = FALSE) {
return _date_getdate($timestamp, $timezone);
}