Home  >  Article  >  Backend Development  >  How to convert date to week in php

How to convert date to week in php

藏色散人
藏色散人Original
2020-08-06 09:54:342439browse

In PHP, you can use the "strtotime() date()" method to change the specified date to the Chinese day of the week, with code such as "484040154421b78fd616aec70331b75f= 5.4 can use the above version.

<?php
function get_chinese_weekday($datetime)
{
    $weekday  = date(&#39;w&#39;, strtotime($datetime));
    $weeklist = array(&#39;日&#39;, &#39;一&#39;, &#39;二&#39;, &#39;三&#39;, &#39;四&#39;, &#39;五&#39;, &#39;六&#39;);
    return &#39;星期&#39; . $weeklist[$weekday];
}
?>

PHP abce8f0488605c723fddb65b09698ef0= 5.3.0, PECL intl >= 1.0 .0)

<?php
$fmt = datefmt_create(
    &#39;zh_TW&#39;,
    IntlDateFormatter::FULL,
    IntlDateFormatter::FULL,
    &#39;Asia/Taipei&#39;,
    IntlDateFormatter::GREGORIAN,
    "EEEE"
);
echo datefmt_format($fmt, strtotime(&#39;2014-05-04 15:10:11&#39;)); // 星期日
$fmt = datefmt_create(
    &#39;zh_TW&#39;,
    IntlDateFormatter::FULL,
    IntlDateFormatter::FULL,
    &#39;Asia/Taipei&#39;,
    IntlDateFormatter::GREGORIAN,
    "EEEEE"
);
echo &#39;星期&#39; . datefmt_format($fmt, strtotime(&#39;2014-05-04 11:10:11&#39;)); // 日
?>

Usage example

echo get_chinese_weekday(&#39;2014-05-26 00:11:12&#39;);

The above is the detailed content of How to convert date to week in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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