在 CakePHP 中将时间字符串从本地时间转换为 GMT



如何在CakePHP中将DATETIME时间字符串从用户的时区转换为GMT

我知道CakeTimeTimeHelper:它们似乎可以很好地处理从服务器时间到用户本地时间的时间字符串的转换,但它们似乎没有涵盖用户提交的日期。在我的一个模型中,我有一个用户提交的时间字段,它接受 DATETIME 格式的输入,用户的本地时间:2014-04-07 04:48:05 。提交表单后,我需要将其转换为 UTC。

这是我视图的控制器方法。我正在尝试使用 CakeTime::format 将sighted字段转换为 UTC,但它将时间向错误的方向移动了正确的小时数:它不是将 15:00EST 转换为 19:00GMT,而是在保存时将其转换为 11:00(!?)。

如何使用正确的 PHP 时区将其从本地时间转换为 GMT?

public function add() {
    App::uses('CakeTime', 'Utility');
    if ($this->request->is('post')) {
        $this->Post->create();
    // Change the submitted time to UTC before the post saves
        $this->request->data('Post.sighted', CakeTime::format($this->request->data['Post']['sighted'], '%Y-%m-%d %H:%M:%S', 'UTC'));
        if ($this->Post->save($this->request->data)) {
            $this->redirect(array('action' => 'view', $this->Post->id));
        } else {
            $this->Session->setFlash(__('The post could not be saved. Please, try again.'), 'flash/error');
        }
    }
    // Get local time and set the field before the view loads
    $this->request->data['Post']['sighted'] = CakeTime::format(date('Y-m-d H:i:s'), '%Y-%m-%d %H:%M:%S', 'N/A', 'America/New_York');
}

如果您了解 MVC 和 OOP 基础知识,那么在模型层内使用帮助程序是合乎逻辑的。致命错误只是告诉您尝试访问不存在的对象,因为没有实例化此类对象。

检查 API 也有帮助:http://api.cakephp.org/2.4/source-class-CakeTime.html#1006

官方文档中也提到了:http://book.cakephp.org/2.0/en/core-utility-libraries/time.html#CakeTime::format

doc 块中的第四个示例显示了如何使用时区。

CakeTime::format('2012-02-15 23:01:01', '%c', 'N/A', 'America/New_York');

-

/**
 * Returns a formatted date string, given either a UNIX timestamp or a valid strtotime() date string.
 * This function also accepts a time string and a format string as first and second parameters.
 * In that case this function behaves as a wrapper for TimeHelper::i18nFormat()
 *
 * ## Examples
 *
 * Create localized & formatted time:
 *
 * {{{
 *   CakeTime::format('2012-02-15', '%m-%d-%Y'); // returns 02-15-2012
 *   CakeTime::format('2012-02-15 23:01:01', '%c'); // returns preferred date and time based on configured locale
 *   CakeTime::format('0000-00-00', '%d-%m-%Y', 'N/A'); // return N/A becuase an invalid date was passed
 *   CakeTime::format('2012-02-15 23:01:01', '%c', 'N/A', 'America/New_York'); // converts passed date to timezone
 * }}}
 *
 * @param integer|string|DateTime $date UNIX timestamp, strtotime() valid string or DateTime object (or a date format string)
 * @param integer|string|DateTime $format date format string (or UNIX timestamp, strtotime() valid string or DateTime object)
 * @param boolean|string $default if an invalid date is passed it will output supplied default value. Pass false if you want raw conversion value
 * @param string|DateTimeZone $timezone Timezone string or DateTimeZone object
 * @return string Formatted date string
 * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html#TimeHelper::format
 * @see CakeTime::i18nFormat()
 */

相关内容

  • 没有找到相关文章

最新更新