Home > php教程 > PHP源码 > 时间的增加函数

时间的增加函数

PHP中文网
Release: 2016-05-25 17:14:42
Original
1513 people have browsed it

时间的增加函数

<?php 
function DateAdd($date, $int, $unit = "d") { //时间的增加(还可以改进成时分秒都可以增加,有时间再补上) 
$dateArr = explode("-", $date); 
$value[$unit] = $int;
//OsPHP.COM.CN
    return date("Y-m-d", mktime(0,0,0, $dateArr[1] + $value[&#39;m&#39;], $dateArr[2] + $value[&#39;d&#39;], 
    $dateArr[0] + $value[&#39;y&#39;]));
//开源OSPhP.COM.CN
} 
function GetWeekDay($date) {  //计算出给出的日期是星期几 
$dateArr = explode("-", $date); 
    return date("w", mktime(0,0,0,$dateArr[1],$dateArr[2],$dateArr[0]));
//开源代码OSPhP.COm.CN
} 
?>
Copy after login

 以上就是时间的增加函数的内容,更多相关内容请关注PHP中文网(m.sbmmt.com)!


Related labels:
source:php.cn
Statement of this Website
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
Latest Articles by Author
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template