方便的日期調整 function getDate()

1 篇文章 / 0 new
author
方便的日期調整 function getDate()
時間調整似乎常會用到, 好像沒看見 php 提供方便使用的 function
提供下程式碼供參考,這樣就可以輕易調整日期了, 時間調整可一樣
public static function getDate($day=0, $mth=0, $yr=0, $tarDate='', $format=__DC_FORMAT_DATE__) {
    if ($tarDate=='')
        $tarDate = date($format);
    $cd = strtotime($tarDate);
    $newdate = date($format, mktime(date('h', $cd), date('i', $cd), date('s', $cd), date('m', $cd) + $mth, date('d', $cd) + $day, date('Y', $cd) + $yr));
    return $newdate;
}
Free Web Hosting