A method that shows each month in a certain period returns an array of these months _php tutorial

Source: Internet
Author: User
Copy CodeThe code is as follows:
/**
* Generate an array of months from the start month to the end month
* This method is modeled after the Party Getdatearr () method
* @param unknown_type $start
* @param unknown_type $end
*/
function Getmontharr ($start, $end)
{
$start = Empty ($start)? Date (' Y-m ', Strtotime ('-1 Month ')): $start;
$end = Empty ($end)? Date (' Y-m '): $end;

Convert to time stamp
$st = Strtotime ($start. '-01 ');
$et = Strtotime ($end. '-01 ');

$t = $st;
$i = 0;
while ($t <= $et)
{
This adds up the total number of seconds per month calculation formula: Timestamp seconds from January 1 minus the timestamp of the current month
I don't know if I want to go
$d [$i] = Trim (date (' Y-m ', $t), ');
$t + = Strtotime (' +1 month ', $t)-$t;
$i + +;
}
return $d;
}

http://www.bkjia.com/PHPjc/325458.html www.bkjia.com true http://www.bkjia.com/PHPjc/325458.html techarticle Copy the code as follows:/** * Generates an array of months from the start month to the end month * The method is modeled after the Party Getdatearr () method * @param unknown_type $start * @param unknown_type ...

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.