Home > Article > Backend Development > How to get what day of the week today is in php
php method to get what day of the week today is: first create a PHP sample file; then get it through the "$time=date("w",time( )); echo $array[$time];" method The result is enough.
Recommended: "PHP Video Tutorial"
php Get the day of the week today
The code example is as follows:
<?php $time=date("w",time( )); $array = ["周日","周一","周二","周三","周四","周五","周六"]; $time=date("w",time( )); echo $array[$time]; ?>
The above is the detailed content of How to get what day of the week today is in php. For more information, please follow other related articles on the PHP Chinese website!