我知道当我从 facebook 事件中检索数据时,它会在 PST 时间出现,但是当我进行这样的查询时
$imploded_eids = implode( ',', $eids );
$fql[$id] = "
SELECT
eid,
name,
description,
start_time,
end_time,
venue,
location,
update_time
FROM
event
WHERE
eid IN ($imploded_eids) AND start_time > $start_time";
我需要将实际 gmt() 时间转换为 PST 时间吗?或者我应该使用当前登录用户的时区吗?