从数据库中的DATETIME向DATE添加天数

时间:2017-04-08 12:39:34

标签: php html

如何将数据库中的天数添加到从数据库中提取的日期时间?我尝试使用
var x = 0; function draw() { alert(x); // x+=1; } setInterval(draw, 1000); ,但它不按要求工作。我在这里错过了什么吗?

下面,

$ bads_date = 2017-04-08 17:39:39(来自数据库)和

$ bp_validity = 7(来自数据库)

1 个答案:

答案 0 :(得分:1)

代码应为:

$expiry = date("Y-m-d H:i:s", strtotime($bads_date. '+'. $bp_validity.' days'));