Home  >  Article  >  php教程  >  php Get the day of the week that today or a certain date is

php Get the day of the week that today or a certain date is

大家讲道理
大家讲道理Original
2016-11-08 14:06:271319browse

<?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;);
?>

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
Previous article:php anti hotlink codeNext article:php anti hotlink code