1

我在谷歌上搜索并阅读了一些关于时区和偏移量的 PHP 手册,但似乎找不到这个问题的答案!

所以我要在这里问。请让我知道这是重复的问题还是在其他地方有答案,我将删除它。

目前我正在使用下面的代码来显示 PHP 中两个位置之间的时间差。

代码工作正常但是有一个问题。如果 2location first" 在 "location two" 之后,结果将在数字前显示一个减号。

例如:如果第一个地点是纽约,第二个地点是伦敦,则时差将显示为 -5。

如果是相反的方式,即首先是伦敦,其次是纽约,它将显示为 5。

我需要做的是显示这样的时差:

伦敦比纽约“超前”5 小时。

或者

纽约比伦敦“落后”5 小时。

这是我的代码:

<?php

if( isset($_POST['submit']))
{
    //be sure to validate and clean your variables
    $timezone1 = htmlentities($_POST['timezone1']);
    $timezone2 = htmlentities($_POST['timezone2']);

    //then you can use them in a PHP function. 
    function get_timezone_offset( $origin_tz, $remote_tz ) {
    $timezone1 = new DateTimeZone( $origin_tz );
    $timezone2 = new DateTimeZone( $remote_tz );

    $datetime1 = new DateTime("now", $timezone1);
    $datetime2 = new DateTime("now", $timezone2);

    $offset = $timezone1->getOffset($datetime1) - $timezone2->getOffset($datetime2);
    return $offset;

}

$offset = get_timezone_offset($timezone1, $timezone2);

}

?>

在这里我回显结果:

<?php echo $offset/3600; ?>

这是位置的 HTML 下拉列表:

<form id="myForm" name="myForm" class="myForm" method="post" action="">
  <select name="timezone2" id="timezone2" class="timezone2">
    <optgroup label="Africa">
                        <?php
                    foreach($options as $key => $value)
                    {
                        echo '<option value="'. $key .'" label="'. $value .'">'.$value.'</option>';
                    }
                    ?>
<option value="Africa/Abidjan" label="Abidjan">Abidjan</option>
<option value="Africa/Accra" label="Accra">Accra</option>
<option value="Africa/Addis_Ababa" label="Addis Ababa">Addis Ababa</option>
<option value="Africa/Algiers" label="Algiers">Algiers</option>
<option value="Africa/Asmara" label="Asmara">Asmara</option>


</optgroup>
</select>

顺便说一下,timezone1 和 timezone2 下拉列表是相同的。

有人可以帮我解决这个问题吗?

谢谢

4

4 回答 4

0

如果要更改结果的符号,可以这样做:<?php echo $offset/3600*-1; ?>

如果您只想删除减号<?php echo ($offset < 0) ? $offset/3600*-1 : $offset; ?>

如果您要删除符号来写句子,您可以这样做:

<?php
//check direction
$direction = ($offset < 0)? "ahead" : "behind";
$direction = ($offset === 0)? "same timezone as" : $direction;
//remove the -
$hours = $offset/3600;
$hours = ($offset < 0) ? $hours*-1 : $hours;
//Get the cities from the Timezone
preg_match('#.*/([^/]+$)#',$timezone1,$city1);
preg_match('#.*/([^/]+$)#',$timezone2,$city2);
//echo sentence replacing underscores with spaces.
echo str_replace("_", " ", $city2[1]).' is '.$hours.' hours '.$direction.' '.str_replace("_", " ", $city1[1]);
?>

我认为这应该适用于您在问题中提供的代码。

于 2013-08-27T16:39:04.400 回答
0

主意

使用可以使用您的符号$offset来确定要显示的字符串:

  • 正: A 领先于 B ;
  • 负数: A 在 B 后面;
  • 零:一样。

代码

function tzPosition( $number ) {
    return ( $number > 0 ) ? 'ahead' : ( ( $number < 0 ) ? 'behind' : 'same' );
} 
echo sprintf("%s is %s hours %s of %s", $cityA, abs($offset), tzPosition($offset), $cityB);

参考

于 2013-08-27T16:01:17.317 回答
0

格林威治标准时间
如果您使用 time(),它是 GMT 时间,因为它是自 Unix 纪元(1970 年 1 月 1 日 00:00:00 GMT)以来一直计算秒数的 Unix 时间戳。
希望有帮助:)

于 2013-08-27T15:58:23.370 回答
0

这实际上是一个简单逻辑的问题。使用 if() 语句并根据偏移值指定要回显的适当文本。

$str = '';
if (0 > $offset)
{
   // For negative offset (hours behind)
   $hour_diff = $offset / 3600 * -1;
   $str = "{$hour_diff} hour(s) behind of";
}
elseif (0 < $offset)
{
   // For positive offset (hours ahead)
   $hour_diff = $offset / 3600;
   $str = "{$hour_diff} hour(s) ahead of";
}
else
{
   // Have you considered the case of same timezone?
   $str = "in the same timezone as";
}

echo "{$location1} is {$str} {$location2}";
于 2013-08-27T15:58:55.223 回答