8

我从数据库中提取 $item_date 的原始生成 mysql 时间戳信息作为 php 日期格式:

if (($timestamp = strtotime($item_date)) === false) {
    echo "The timestamp string is bogus";
} else {
    echo date('j M Y h:i:sA', $timestamp);
}

服务器区域 (UTC) 之后的输出:

2012 年 11 月 12 日下午 5:54:11

但我希望它根据用户时区进行转换

示例:假设用户的时间是2012 年 11 月 13 日上午 7:00:00(格林威治标准时间 +0800),服务器时间是2012 年 11 月 12 日晚上 11:00:00(UTC),$item_date 的时间戳是2012 年 11 月 12 日晚上 10:30:00 (UTC)所以

使用(UTC)的用户将看到 $item_date 为:

2012 年 11 月 12 日晚上 10:30:00

(+0800 GMT) 的用户将看到 $item_date 为:

2012 年 11 月 13 日下午 06:30:00

我该如何完成?谢谢

4

1 回答 1

25

这篇文章已更新为包含一个完整的示例

<?php
    session_start();

    if (isset($_POST['timezone']))
    {
        $_SESSION['tz'] = $_POST['timezone'];
        exit;
    }

    if (isset($_SESSION['tz']))
    {
        //at this point, you have the users timezone in your session
        $item_date = 1371278212;

        $dt = new DateTime();
        $dt->setTimestamp($item_date);

        //just for the fun: what would it be in UTC?
        $dt->setTimezone(new DateTimeZone("UTC"));
        $would_be = $dt->format('Y-m-d H:i:sP');

        $dt->setTimezone(new DateTimeZone($_SESSION['tz']));
        $is = $dt->format('Y-m-d H:i:sP');

        echo "Timestamp " . $item_date . " is date " . $is . 
             " in users timezone " . $dt->getTimezone()->getName() .
             " and would be " . $would_be . " in UTC<br />";
    }
?>

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jstimezonedetect/1.0.4/jstz.min.js"></script>
<script language="javascript">
  $(document).ready(function() {
        <?php if (!isset($_SESSION['tz'])) { ?>
            $.ajax({
                type: "POST",
                url: "tz.php",
                data: 'timezone=' + jstz.determine().name(),
                success: function(data){
                    location.reload();
                }
            });

        <?php } ?>        
    });
</script>

我希望这现在已经足够清楚了;)。

于 2012-11-12T07:06:57.813 回答