PHP:添加小时数的问题

时间:2018-02-19 23:13:51

标签: php

我需要从MySQL获取一个datetime字段并添加两(2)小时以在PHP中显示它。

我已尝试过这个,但不起作用:

foreach ($player->select($id) as $element) {

    echo date($element['date'], time('+2 hours'));

}

我希望你能帮助我。感谢。

1 个答案:

答案 0 :(得分:1)

它应该是

foreach ($player->select($id) as $element) {
    $time = strtotime($element['date']);
    echo date('Y-m-d H:i:s', strtotime('+2 hours', $time));
}

strtotime< 2< sup&nd 参数采用时间参数来计算相对时间。 Php Manual on strtotime