![]() |
|
|||||
| Business | Careers | ||
| Cars | Entertainment | ||
| Education | Health | ||
| Finance | Insurance | ||
| Homes | Law | ||
| Internet | Photography | ||
| Motorbike | Shopping | ||
| Pets | Travel | ||
| Sports |
function get_iso_8601_date($int_date) { //$int_date: current date in UNIX timestamp $date_mod = date('Y-m-d\TH:i:s', $int_date); $pre_timezone = date('O', $int_date); $time_zone = substr($pre_timezone, 0, 3).":".substr($pre_timezone, 3, 2); $date_mod .= $time_zone; return $date_mod; } echo get_iso_8601_date(time()); ?>