gpt4 book ai didi

php - 如何在 magento 中将我的时间戳转换为 UTC 时间戳

转载 作者:可可西里 更新时间:2023-11-01 00:09:34 28 4
gpt4 key购买 nike

我找到了很多关于这个的文章,但没有一个给出适当的解决方案

我当前的系统时区是 = 'asia/Kolkata'

我当前的 magento 时区是 'asia/shanghai'

这给了我正确的 UTC 时间,系统时间是 '2013-06-26 15:34:00'

   $timezone = date_default_timezone_get();
date_default_timezone_set($timezone);

$now = Mage::getModel('core/date')->timestamp(time());
$current_date= date('Y-m-d H:i:s');

所以这里 $current_date = '2013-06-26 18:04:30'

但我有另一个我的时间戳..... 例如:- $time = '2013-06-26 15:34:00';

   $scheduletime = '2013-06-26 15:19:00';
$dateTimestamp = Mage::getModel('core/date')->timestamp(strtotime($scheduletime));
$schedule_time = date('Y-m-d H:i:s',strtotime($scheduletime));

所以这里 $schedule_time = '2013-06-26 23:34:00'

所以实际上我想要的是得到这两次之间的差异,它应该是:0

最佳答案

尝试

Mage::getSingleton('core/date')->gmtDate();

注意:UTC 和 GMT 是相等的。

关于php - 如何在 magento 中将我的时间戳转换为 UTC 时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17317373/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com