如何减去两个日期和值将存储为整数,
喜欢
int a=returndate - issuedate;
这里(a)将是天数。
喜欢
int a=24-12-2010 - 12-12-2010;
这里a是12;
答案 0 :(得分:3)
答案 1 :(得分:1)
将<{1}}用于此
timestamp
for mysql使用$a=strtotime(24-12-2010) - strtotime(12-12-2010);
date('m',$a);//gives number of days
答案 2 :(得分:0)
你看过this了吗?它适合你想要的吗?