PHP method to get the day of the week for a specified date

黄舟
Release: 2023-03-06 06:48:02
Original
1846 people have browsed it

The example of this article describes the implementation method of PHP to obtain the day of the week for a specified date. Share it with everyone for your reference, the details are as follows:

<?php
  header("Content-type: text/html; charset=utf-8");
  //获取星期方法
  function get_week($date){
    //强制转换日期格式
    $date_str=date(&#39;Y-m-d&#39;,strtotime($date));
    //封装成数组
    $arr=explode("-", $date_str);
    //参数赋值
    //年
    $year=$arr[0];
    //月,输出2位整型,不够2位右对齐
    $month=sprintf(&#39;%02d&#39;,$arr[1]);
    //日,输出2位整型,不够2位右对齐
    $day=sprintf(&#39;%02d&#39;,$arr[2]);
    //时分秒默认赋值为0;
    $hour = $minute = $second = 0;
    //转换成时间戳
    $strap = mktime($hour,$minute,$second,$month,$day,$year);
    //获取数字型星期几
    $number_wk=date("w",$strap);
    //自定义星期数组
    $weekArr=array("星期日","星期一","星期二","星期三","星期四","星期五","星期六");
    //获取数字对应的星期
    return $weekArr[$number_wk];
  }
  //测试
  $date="2016-08-20";
  echo get_week($date);
  //星期六
?>
Copy after login



Readers who are interested in more PHP-related content can check out the special topic of this site: "php Date and Time Usage summary", "PHP array (Array) operation skills collection", "PHP basic syntax introductory tutorial", "PHP operations and operator usage summary", "php object-oriented programming introductory tutorial", "PHP network programming skills summary" , "php string (string) usage summary", "php+mysql database operation introductory tutorial" and "php common database operation skills summary"

The above is PHP to get the day of the specified date Several implementation methods, please pay attention to the PHP Chinese website (www.php.cn) for more related content!

Related labels:
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!