php算法编程 计算天数

求从2017-2-5 到2018-3-6 有多少天?用PHP写一个通用函数来完成这个题目。

aluckdog
浏览 667回答 1
1回答

手掌心

<?php$start = '2017-2-5';$end = '2018-3-6';function calDate($start,$end){&nbsp; &nbsp; $start_time = strtotime($start);&nbsp; // 获得$start 的秒时间戳&nbsp; &nbsp; $end_time = strtotime($end);&nbsp; &nbsp; &nbsp; // 获得$end 的秒时间戳&nbsp; &nbsp; return ($end_time - $start_time)/60/60/24;&nbsp; &nbsp;// 秒时间戳相减得到两个日期相差的秒数,通过秒数计算天数}echo calDate($start,$end);
打开App,查看更多内容
随时随地看视频慕课网APP