Convert datetime to Chinese

Source: Internet
Author: User

The following is a conversion of datetime date and time to adult \ ', \ 'months \', \ 'day \ ', \ 'hour \', \ 'sub-type \', \ 'Seconds \ 'to display. For more information, see.

The following example shows how to convert datetime to adult, month, day, hour, specificity, and second, for more information, see.

/**
* Friendly Date and Time
*
* @ Param DateTime $ datetime Date and Time
* @ Param int $ size precise to the number of digits
* @ Throws InvalidArgumentException
* @ Return string
*/
Function friendly_date ($ datetime, $ size = 1)
{
If (is_int ($ datetime )){
$ Datetime = new DateTime ($ datetime );
}
If (! ($ Datetime instanceof DateTime )){
Throw new InvalidArgumentException ('invalid "DateTime" object ');
}
$ Now = new DateTime ();
$ Interval = $ now-> diff ($ datetime );
$ IntervalData = array (
$ Interval-> y, $ interval-> m, $ interval-> d,
$ Interval-> h, $ interval-> I, $ interval-> s,
);
$ IntervalFormat = array ('Year', 'month', 'day', 'hourly ', 'specificity', 'second ');
Foreach ($ intervalData as $ index => $ value ){
If ($ value ){
$ IntervalData [$ index] = $ value. $ intervalFormat [$ index];
} Else {
Unset ($ intervalData [$ index]);
Unset ($ intervalFormat [$ index]);
}
}
Return implode ('', array_slice ($ intervalData, 0, $ size ));
}

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.