0

我正在制作一个社交网站,这个网站真的让我很紧张。

如何处理基于 PHP 和 MySQL 的社交网站中的时区,以便任何用户从任何国家访问。我将简要解释一下

我有一个名为 posts 的表,我执行一个 mysql 查询来放置内容、用户名、用户图片以及它之前发布的时间。

例如,如果印度的某人与伦敦的某人是朋友。印度人在 london guy 的个人资料上发帖,并弹出一条通知,说这个印度人在 5 个半小时前在他的个人资料上发帖。我该如何纠正?

请给出有用的答复。

提前致谢。

4

1 回答 1

0

用于timezone-offset-get根据服务器时间进行更正。

/**    Returns the offset from the origin timezone to the remote timezone, in seconds.
*    @param $remote_tz;
*    @param $origin_tz; If null the servers current timezone is used as the origin.
*    @return int;
*/
function get_timezone_offset($remote_tz, $origin_tz = null)

http://php.net/manual/en/function.timezone-offset-get.php

于 2012-05-18T16:32:43.000 回答