Home  >  Article  >  php教程  >  php判断今天是星期几的方法

php判断今天是星期几的方法

WBOY
WBOYOriginal
2016-06-21 08:49:051176browse

php的date()函数十分强大,合理利用该函数的各种参数可以实现我们日常开发中的各种需求,今天说说如何使用php判断今天是星期几的方法。

关于php date()函数的解释,可以参照本站文章:

PHP date()参数说明

这里主要用到了 w 这个参数,关于这个参数的解释是:

w 表示星期中的第几天,数字表示 0(表示星期天)到 6(表示星期六)

有了这个一切就很简单了,作者这里就直接贴代码了,细节不解释:

<?php //php获取今天是星期几
function getWeek($unixTime=''){
	$unixTime=is_numeric($unixTime)?$unixTime:time();
	$weekarray=array('日','一','二','三','四','五','六');
	return '星期'.$weekarray[date('w',$unixTime)];
}
echo getWeek();



Statement:
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