Home > php教程 > PHP源码 > 获取当天或某个日期是星期几

获取当天或某个日期是星期几

PHP中文网
Release: 2016-05-25 17:14:50
Original
945 people have browsed it

1. [代码][PHP]代码  

<?php
function getWeekName($data,$format = &#39;星期&#39;)
{
	$week   =  date( "D ",$data); 
	switch($week) 
	{ 
		case "Mon ": 
			$current   =   $format."一"; 
			break; 
		case "Tue ": 
			$current   =   $format."二"; 
			break; 
		case "Wed ": 
			$current   =   $format."三"; 
			break; 
		case "Thu ": 
			$current   =   $format."四"; 
			break; 
		case "Fri ": 
			$current   =   $format."五"; 
			break; 
		case "Sat ": 
			$current   =   $format."六"; 
			break; 
		case "Sun ": 
			$current   =   $format."日"; 
			break; 
	} 
	return $current;
}


echo &#39;今天是:&#39;.getWeekName(time(),&#39;星期&#39;);
echo &#39;<br>&#39;;
echo &#39;今天是:&#39;.getWeekName(time(),&#39;礼拜&#39;);
echo &#39;<br>&#39;;
echo &#39;2010-12-12是:&#39;.getWeekName(strtotime(&#39;2010-12-12&#39;),&#39;礼拜&#39;);
?>
Copy after login

                   

                   

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
Latest Articles by Author
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template