php 根据Unix时间戳正确获取WordPress中的本地日期/时间。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 根据Unix时间戳正确获取WordPress中的本地日期/时间。相关的知识,希望对你有一定的参考价值。

<?php

/**
 * Fetch the local date/time in WordPress based on a Unix timestamp.
 * 
 * @param int $timestamp
 * @param string $format
 * @return string
 */
function get_wp_local_date_time( $timestamp, $format = '' ) {
	$format = !empty( $format ) ? $format: get_option('date_format') . ' ' . get_option('time_format');
	if( ! $timezone = get_option('timezone_string') ) {
		$timezone = date_default_timezone_get();
	}
	date_default_timezone_set( $timezone );
	return date_i18n( $format, $timestamp );
}

以上是关于php 根据Unix时间戳正确获取WordPress中的本地日期/时间。的主要内容,如果未能解决你的问题,请参考以下文章

如何将 C 中的 unix 时间戳作为 int 获取?

php如何取得十三位unix时间戳

php获取UTC时间戳

php怎么获取今天零点的时间戳

如何利用PHP时间戳获取当前时间

PHP 如何在 unix 中获取服务器的时间戳? [复制]