Home > php教程 > PHP源码 > body text

时间的增加函数

PHP中文网
Release: 2016-05-25 17:14:42
Original
1482 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中文网(www.php.cn)!


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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!