How to convert date to week in php

藏色散人
Release: 2023-03-03 21:18:01
Original
2398 people have browsed it

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 "

How to convert date to week in php

Recommended: "PHP Video Tutorial"

PHP Enter the date and time to automatically convert them to the day of the week, You can use strtotime() date(). To change to Chinese day of the week, you need another array mapping~

PHP Convert date and time to Chinese day of the week

PHP After 5.4, the array writing method can be simplified to use [], and it can be used directly after declaration, so I wrote two simple versions for reference~

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

PHP >= 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];
}
?>
Copy after login

PHP < 5.4 Use the above version.

Debain / Ubuntu If you have the php5-intl package installed, you can use IntlDateFormatter to write (PHP 5 >= 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;)); // 日
?>
Copy after login

Usage example

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

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!

Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!