web-dev-qa-db-ja.com

Date_l18n()でタイムスタンプを現地時間に変換する

定期的に電子メールを送信し、オプションとして送信されたときのタイムスタンプを保存するWordPressのcronジョブを持っています。設定ページに日付を表​​示したいのですが。 「最後のEメールは 'x'に送信されました」のようなものです。私はアメリカの西海岸にいるので、私たちの時間は現在UTCから7時間離れています。

Date_i18n()からの私の予想される出力は、タイムスタンプを渡して、UTCから7時間調整されたローカルフォーマットの日付になります。ただし、UTCで時刻を返します。現在時刻を取得しようとしても、期待される出力になるとは思わないでしょう。

たとえば、echo date_i18n('F d, Y H:i');は2013年4月5日11時36分を出力しますが、echo date_i18n('F d, Y H:i',time());は2013年4月5日18時36分を出力します。

これは意図的ですか?既存のタイムスタンプからローカルにフォーマットされた日付を返すにはどうすればいいですか?助けてくれてありがとう。

14
Andrew Bartel

私は3ヶ月遅れていることを知っていますが、ここで欲しい機能はWordPress ' get_date_from_gmt() です。

この関数は、最初のパラメータとしてY-m-d H:i:sフォーマットのGMT/UTC日付を、2番目のパラメータとして希望の日付フォーマットを受け入れます。それはあなたの日付を設定画面で設定された現地のタイムゾーンに変換します。

使用例

echo get_date_from_gmt( date( 'Y-m-d H:i:s', $my_unix_timestamp ), 'F j, Y H:i:s' );

30
John Blackbourn

コーデックス から:

ブログの現地時間を返すには、time()の代わりにcurrent_time( 'timestamp')を使用する必要があります。 WordPressでは、PHPのtime()は常にUTCを返し、current_time( 'timestamp'、true)を呼び出すのと同じです。

これを試して:

define( 'MY_TIMEZONE', (get_option( 'timezone_string' ) ? get_option( 'timezone_string' ) : date_default_timezone_get() ) );
date_default_timezone_set( MY_TIMEZONE );
echo date_i18n('F d, Y H:i', 1365194723);

これは、スクリプトの実行期間中、デフォルトのPHP dateをWPのtimezone_stringオプションに設定します(使用可能な場合)。

4
vancoder

date_i18n($format, $timestamp)はロケールに従ってフォーマットしますが、タイムゾーンではフォーマットしません。 get_date_from_gmt($datestring, $format)はタイムゾーンに従ってフォーマットしますが、ロケールではフォーマットしません。タイムゾーンの両方のロケールに従ってフォーマットするには、次のようにします。

function local_date_i18n($format, $timestamp) {
    $timezone_str = get_option('timezone_string') ?: 'UTC';
    $timezone = new \DateTimeZone($timezone_str);

    // The date in the local timezone.
    $date = new \DateTime(null, $timezone);
    $date->setTimestamp($timestamp);
    $date_str = $date->format('Y-m-d H:i:s');

    // Pretend the local date is UTC to get the timestamp
    // to pass to date_i18n().
    $utc_timezone = new \DateTimeZone('UTC');
    $utc_date = new \DateTime($date_str, $utc_timezone);
    $timestamp = $utc_date->getTimestamp();

    return date_i18n($format, $timestamp, true);
}

プログラム例:

$format = 'F d, Y H:i';
$timestamp = 1365186960;
$local = local_date_i18n($format, $timestamp);
$gmt = date_i18n($format, $timestamp);
echo "Local: ", $local, " UTC: ", $gmt;

ロサンゼルスのタイムゾーンの出力:

ローカル:2013年4月5日11時36分UTC:2013年4月5日18時36分

参考文献:

1
antonakos

タイムスタンプにタイムゾーンオフセットを追加します。

$offset = get_option( 'gmt_offset' ) * HOUR_IN_SECONDS;
return date_i18n( get_option( 'date_format' ), $ts + $offset );

またはそれ以上。

$tz = new DateTimeZone( get_option( 'timezone_string' ) );
$offset_for_that_time = timezone_offset_get ( $tz , new DateTime("@{$ts}") );
return date_i18n ( get_option( 'date_format' ), $ts + offset_for_that_time );
0
ecabuk

これが私のマシンではうまくいくようです(他のものはどれもうまくいきませんでした):

$tz = new DateTimeZone(get_option('timezone_string'));
$dtz = new DateTimeZone('GMT');
foreach($posts as $key => $post){
    $gmt_date = DateTime::createFromFormat('Y-m-d H:i:s', $post->PostDateGMT, $dtz);
    $gmt_date->setTimeZone($tz);
    $posts[$key]->PostDateGMT = $gmt_date->format('Y-m-d H:i:s');
}

元のコード: https://www.simonholywell.com/post/2013/12/convert-utc-to-local-time/

date_l18n()を使っていませんが、後で使うことができると思います...

0
NoOne

UTCをタイムゾーン、言語、そしてWordPressのオプションのフォーマットで文字列に変換する

UTCの日時文字列を正しい言語、形式、およびタイムゾーンのきれいな日時文字列に変換する、適切なドキュメント関数を作成しました。コピーしてください。

たとえば、(UTCで)"2019-05-30 18:06:01"を渡すと、"Maggio 30, 2019 10:06 am"が返されます。

/**
 * Given a string with the date and time in UTC, returns a pretty string in the
 * configured language, format and timezone in WordPress' options.
 *
 * @param string $utc_date_and_time 
 *      e.g: "2019-05-30 18:06:01"
 *      This argument must be in UTC.
 * @return string 
 *      e.g: "Maggio 30, 2019 10:06 am"
 *      This returns a pretty datetime string in the correct language and
 *      following the admin's settings.
 */
function pretty_utc_date( string $utc_date ): string {
    if (! preg_match( '/^\d\d\d\d-\d\d-\d\d \d\d:\d\d:\d\d$/', $utc_date ) ) {
        /* I have not tested other formats, so only this one allowed. */
        throw new InvalidArgumentException( "Expected argument to be in YYYY-MM-DD hh:mm:ss format" );
    }

    $date_in_local_timezone = get_date_from_gmt( $utc_date );

    /* $date_in_local_timezone is now something like "2019-05-30 10:06:01"
     * in the timezone of get_option( 'timezone_string' ), configured in
     * WordPress' general settings in the backend user interface.
     */

    /* Unfortunately, we can't just pass this to WordPress' date_i18n, as that
     * expects the second argument to be the number of seconds since 1/Jan/1970
     * 00:00:00 in the timezone of get_option( 'timezone_string' ), which is not the
     * same as a UNIX Epoch timestamp, which is the number of seconds since
     * 1/Jan/1970 00:00:00 GMT. */
    $seconds_since_local_1_jan_1970 =
        (new DateTime( $date_in_local_timezone, new DateTimeZone( 'UTC' ) ))
        ->getTimestamp();
    // e.g: 1559210761

    /* Administrators can set a preferred date format and a preferred time
     * format in WordPress' general settings in the backend user interface, we
     * need to retrieve that. */
    $settings_format = get_option( 'date_format' ) . ' '. get_option( 'time_format' );
    // $settings_format is in this example "F j, Y g:i a"

    /* In this example, the installation of WordPress has been set to Italian,
     * and the final result is "Maggio 30, 2019 10:06 am" */
    return date_i18n( $settings_format, $seconds_since_local_1_jan_1970 );

}

参考文献:

0
Flimm