Home >php教程 >PHP源码 >获取2个日期之间的天数

获取2个日期之间的天数

PHP中文网
PHP中文网Original
2016-05-25 17:03:251036browse

获取2个日期之间的天数

function daysbetweendates($date1, $date2){
    $date1 = strtotime($date1);
    $date2 = strtotime($date2);
    $days = ceil(abs($date1 - $date2)/86400);
    return $days;
}


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:getPhpContentsNext article:array_multisort对多维数组排序