Home > Backend Development > PHP Problem > How to convert date to day of week in php

How to convert date to day of week in php

藏色散人
Release: 2023-03-17 21:02:01
Original
3924 people have browsed it

php method to convert date to day of the week: 1. Create a php sample file; 2. Get the English day of the week through the "date("l");" method; 3. Define an array, and then use " $weekarray[date("w",time())];" can be used to get the Chinese day of the week.

How to convert date to day of week in php

The operating environment of this tutorial: Windows 10 system, PHP version 8.1, DELL G3 computer

How to convert the date to the day of the week in php ?

Use php to get the day of the week or the day of the week corresponding to the specified date

Get the English day of the week

date("l"); //data就可以获取英文的星期比如Sunday
date("w"); //这个可以获取数字星期比如123,注意0是星期日
Copy after login

Get the Chinese day of the week

$weekarray = array("日", "一", "二", "三", "四", "五", "六"); //先定义一个数组
echo "星期" . $weekarray[date("w",time())];
Copy after login

Get the specified date is

$weekarray=array("日","一","二","三","四","五","六");
echo "星期".$weekarray[date("w",strtotime("2021-08-26"))];
echo "<br>";
Copy after login

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to convert date to day of 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