箭头区域设置不起作用

时间:2017-03-26 23:51:06

标签: python datetime python-arrow

arrow.get(datetime.now(), 'Asia/Shanghai').date()

返回datetime.date(2017, 3, 26),但是那里是3月27日。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

Documentation给出了以utc开头然后应用时区的示例。对于你的情况:

<?php

header('Content-Type: application/json');

$array['last_name'] = 'Goss';

echo json_encode($array);
?>

应该给你你想要的当地日期。