PHP to judge how today is the day of the week

Source: Internet
Author: User
Tags date

PHP's date () function is very powerful, reasonable use of the function of various parameters to achieve our day-to-day development of various requirements, today to talk about how to use PHP to determine how today is the day of the week method.

For an explanation of the PHP date () function, you can refer to this site article:

PHP date () parameter description

Here is the main use of the parameter of W, the explanation of this parameter is:

W represents the day of the week, with a number representing 0 (Sunday) to 6 (means Saturday)

With this all is very simple, the author directly put the code here, the details do not explain:

<?php
//php Get today is the week several
function getweek ($unixTime = ') {
	$unixTime =is_numeric ($unixTime)? $unixTime: Time ();
	$weekarray =array (' Day ', ' one ', ' two ', ' three ', ' four ', ' five ', ' six ');
	Return ' Week '. $weekarray [Date (' W ', $unixTime)];
}
Echo Getweek ();


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.