У меня есть этот класс, который я нашел для преобразования временных меток в X Time Ago.Отлично работает, кроме одной проблемы.Я нахожусь в Тихоокеанском часовом поясе, и поэтому время всегда говорит 8 часов назад, когда оно действительно должно сказать 2 секунды назад.
class Cokidoo_DateTime extends DateTime {
protected $strings = array(
'y' => array('1 year ago', '%d years ago'),
'm' => array('1 month ago', '%d months ago'),
'd' => array('1 day ago', '%d days ago'),
'h' => array('1 hour ago', '%d hours ago'),
'i' => array('1 minute ago', '%d minutes ago'),
's' => array('now', '%d secons ago'),
);
/**
* Returns the difference from the current time in the format X time ago
* @return string
*/
public function __toString() {
$now = new DateTime('now');
$diff = $this->diff($now);
foreach($this->strings as $key => $value){
if( ($text = $this->getDiffText($key, $diff)) ){
return $text;
}
}
return '';
}
/**
* Try to construct the time diff text with the specified interval key
* @param string $intervalKey A value of: [y,m,d,h,i,s]
* @param DateInterval $diff
* @return string|null
*/
protected function getDiffText($intervalKey, $diff){
$pluralKey = 1;
$value = $diff->$intervalKey;
if($value > 0){
if($value < 2){
$pluralKey = 0;
}
return sprintf($this->strings[$intervalKey][$pluralKey], $value);
}
return null;
}
}
Как вставлять новые строки с помощью SQL:
mysql_query("INSERT INTO `" . $dbMain . "`.`" . $dbTable . "` (`title`, `date`) VALUES ('$fileTitle', NOW())");
По умолчанию установлено значение CURRENT_TIMESTAMP;
Как я могу изменить свой метод, чтобы заставить это работать?В идеале я хотел бы, чтобы это было универсальным для всех, поэтому независимо от того, в каком часовом поясе вы находитесь, он покажет X время назад в зависимости от того, когда существует новая запись.