91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php如何實現日歷

發布時間:2021-10-27 09:45:27 來源:億速云 閱讀:210 作者:iii 欄目:編程語言

這篇文章主要介紹“php如何實現日歷”,在日常操作中,相信很多人在php如何實現日歷問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”php如何實現日歷”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

php實現日歷的方法:1、創建一個PHP示例文件并設置編碼為utf-8;2、創建table表格;3、通過mktime等函數獲取時間日期;4、通過for循環實現日歷功能即可。

php如何實現日歷

本文操作環境:Windows7系統、PHP7.1版、DELL G3電腦

php怎么實現日歷?

PHP實現的日歷功能示例

具體如下:

<?php
/*
 * Created by PhpStorm.
 * User: admin
 */
header("Content-Type:text/html;charset=utf-8");
date_default_timezone_set("PRC");
$a=@$_GET["a"];
$b=@$_GET["b"];
if($a){
  $a=$a;
}else{
  $a=date('y');
}
if($b){
  $b=$b;
}else{
  $b=date('m');
}
$noe=mktime(0,0,0,$b,1,$a); //獲取當前的月的一號
$year=date("Y",$noe); //當前的年
$month=date("m",$noe); //當前的月
$week=date("w",$noe); // 每個月的一號是星期幾
$days=date("t",$noe); //每個月的總天數
$day=date("d"); //獲取今天是幾號
$as=$year-1; //獲取上一年的年
$bs=$month-1; //獲取上個月
$bs=$month+1; // 獲取下個月
$as=$year+1; //獲取下一年
?>
<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>日歷</title>
  <style>
    table{
      border: 1px solid #050;
    }
    table th{
      background:#000;
      color:#fff;
      border: 2px solid #050;
    }
  </style>
</head>
<body>
 <table cellpadding="0" cellspacing="0">
   <tr>
     <th><a href="?a=<?php echo $as; ?>" rel="external nofollow" rel="external nofollow" ><<上一年</a></th>
     <th><a href="?b=<?php echo $bs; ?>" rel="external nofollow" rel="external nofollow" ><<上個月</a></th>
     <th><?php echo $year."-".$month."-".$day ?></th>
     <th><a href="?b=<?php echo $bs; ?>" rel="external nofollow" rel="external nofollow" >下個月>></a></th>
     <th><a href="?a=<?php echo $as; ?>" rel="external nofollow" rel="external nofollow" >下一年>></a></th>
   </tr>
   <tr>
     <th>星期日</th>
     <th>星期一</th>
     <th>星期二</th>
     <th>星期三</th>
     <th>星期四</th>
     <th>星期五</th>
     <th>星期六</th>
   </tr>
  <tr>
    <?php
    for($i=0;$i<$week;$i++){
      echo "<td>&nbsp;</td>"; //獲取當月一號前面的空格
    }
    for($k=1;$k<=$days;$k++){
      if($k==$day){
        echo "<th>".$k."</th>"; //輸出今天是幾號
      }else{
        echo "<td>".$k."</td>"; //輸出當月天數
      }
      if(($k+$week)%7==0){
        echo "<tr></tr>"; // 一周七天換行
      }
    }
    ?>
  </tr>
 </table>
</body>
</html>

運行結果:

php如何實現日歷

到此,關于“php如何實現日歷”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

额尔古纳市| 霍林郭勒市| 理塘县| 江油市| 合水县| 孝感市| 都昌县| 特克斯县| 宣恩县| 德保县| 安阳市| 富阳市| 买车| 峨眉山市| 商都县| 尉氏县| 南宁市| 临高县| 金阳县| 太白县| 宜君县| 蒲城县| 襄樊市| 芦溪县| 松阳县| 双江| 广河县| 稷山县| 安新县| 安宁市| 当阳市| 石柱| 聊城市| 柯坪县| 化州市| 曲阳县| 绵阳市| 玛沁县| 扎赉特旗| 汉阴县| 阜宁县|