테이블에 간단한 달력 설정 tr 및 td를 생성하는 PHP 개발

113.png

그리기 방법을 설정하고 테이블을 그리고 테이블에 tr과 td를 설정합니다

 1) 데이터는 테이블 태그를 사용하여 표시되므로 각 tr 아래의 td는 여기에 정렬되어야 합니다

 2) $index % 7 = = 0 테이블 각 행의 첫 번째 열을 계산합니다

 3)$index % 7 == 6 || $index == ($length-1) 각 행의 마지막 열을 계산합니다. $caculate

 4 )각 행의 배열인 $tr에 중간 행을 추가합니다

<?php
function draw($caculate) {  //$caculate 通过caculate方法计算后的数据
      $tr = array();
      $length = count($caculate);
      $result = array();
      foreach ($caculate as $index => $date) {
         if($index % 7 == 0) {//第一列
            $tr = array($date);
         }elseif($index % 7 == 6 || $index == ($length-1)) {
            array_push($tr, $date);
            array_push($result, $tr);//添加到返回的数据中
            $tr = array();//清空数组列表
         }else {
            array_push($tr, $date);
         }
      }
      return $result;
   }

?>


지속적인 학습
||
<?php function draw($caculate) { //$caculate 通过caculate方法计算后的数据 $tr = array(); $length = count($caculate); $result = array(); foreach ($caculate as $index => $date) { if($index % 7 == 0) {//第一列 $tr = array($date); }elseif($index % 7 == 6 || $index == ($length-1)) { array_push($tr, $date); array_push($result, $tr);//添加到返回的数据中 $tr = array();//清空数组列表 }else { array_push($tr, $date); } } return $result; } ?>
  • 코스 추천
  • 코스웨어 다운로드
현재 코스웨어를 다운로드할 수 없습니다. 현재 직원들이 정리하고 있습니다. 앞으로도 본 강좌에 많은 관심 부탁드립니다~