function date_getdate in Date 5
Same name and namespace in other branches
- 5.2 date_php4/date_php4.inc \date_getdate()
- 6.2 date_php4/date_php4.inc \date_getdate()
- 6 date_php4/date_php4.inc \date_getdate()
File
- ./
date.inc, line 41 - Date/time API functions
Code
function date_getdate($timestamp) {
date_load_library();
switch (DATE_LIBRARY) {
case 'ADODB':
return adodb_getdate($timestamp);
default:
return getdate($timestamp);
}
}