PHP:时区关闭1天或更多天

时间:2017-09-07 21:43:50

标签: php

我在PHP中运行并输出以下ROQL(SQL for Oracle Rightnow)。

select sum(amount) as c, datecreated from WMP.wmp_obj_statuses where status IN ('New','Pending','Updated') AND datecreated='2017-08-31' LIMIT 25

这带回了3065.到目前为止一切都很好但是创造的日期落后了一天。

我也有以下

select sum(amount) as amount,datecreated from WMP.wmp_obj_statuses where status IN ('New','Pending','Updated') group by datecreated

这让我回到了3065,但是日期创建的是2017-08-30Z

尽我所能,我无法在ROQL或PHP中恢复2017-08-31的合法日期

有什么想法吗?我试过看。做各种strtotime /日期函数,但现在回到空白画布

0 个答案:

没有答案