2013-05-04 00:26:04 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Get date in RFC3339
|
|
|
|
* For example used in XML/Atom
|
|
|
|
*
|
|
|
|
* @link http://stackoverflow.com/questions/5671433/php-time-to-google-calendar-dates-time-format
|
|
|
|
*
|
|
|
|
* @param integer $timestamp
|
|
|
|
* @return string date in RFC3339
|
|
|
|
* @author Boris Korobkov
|
|
|
|
*/
|
|
|
|
function date3339($timestamp=0) {
|
|
|
|
|
|
|
|
if (!$timestamp) {
|
|
|
|
$timestamp = time();
|
|
|
|
}
|
|
|
|
$date = date('Y-m-d\TH:i:s', $timestamp);
|
|
|
|
|
|
|
|
$matches = array();
|
|
|
|
if (preg_match('/^([\-+])(\d{2})(\d{2})$/', date('O', $timestamp), $matches)) {
|
|
|
|
$date .= $matches[1].$matches[2].':'.$matches[3];
|
|
|
|
} else {
|
|
|
|
$date .= 'Z';
|
|
|
|
}
|
|
|
|
return $date;
|
|
|
|
}
|
|
|
|
|
2013-05-11 13:19:18 +03:00
|
|
|
/* End of file general_helper.php */
|
|
|
|
/* Location: ./application/helpers/general_helper.php */
|