Converting datetime to Chinese representation _ PHP Tutorial

Source: Internet
Author: User
Converts datetime to Chinese. The following is a method for converting datetime to adult, month, day, hour, minute, and second. For more information, see. The following is a conversion of datetime date and time to adult \ ', \ 'months \', \ 'Day \ ', \ 'hour \', \ 'specificity \ ', \ 'seconds \' to display. if you need it, refer to it.

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 ));
}

Expiration, \ 'months \ ', \ 'Day \', \ 'hour \ ', \ 'classification \', \ 'second \ 'to display, for more information, see. The following is...

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.