Home > Article > Backend Development > How to convert date to day of week in php
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.
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是星期日
Get the Chinese day of the week
$weekarray = array("日", "一", "二", "三", "四", "五", "六"); //先定义一个数组 echo "星期" . $weekarray[date("w",time())];
Get the specified date is
$weekarray=array("日","一","二","三","四","五","六"); echo "星期".$weekarray[date("w",strtotime("2021-08-26"))]; echo "<br>";
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!