Home>Article>Backend Development> How to convert date to week in php
How to convert date to week in php: First create a PHP sample file; then define a "get_chinese_weekday" method; finally convert the date into weekday through strtotime and date functions.
Recommendation: "PHP Video Tutorial"
PHP date and time conversion into Chinese day of the week
PHP Input date and time. To automatically convert it to a day of the week, you can use strtotime() date(). To change it to a Chinese day of the week, you need another array mapping~
PHP Convert date and time to Chinese day of the week
After PHP 5.4, the array writing method can be simplified using [], and it can be used directly after being declared, so I wrote two simple versions for reference~
PHP >= 5.4 You can use the above version.
PHP 42073897ebfa28f7614e652d5056beeb= 5.3.0, PECL intl >= 1.0.0)
Usage example
echo get_chinese_weekday('2014-05-26 00:11:12');
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!