如何使用php在表中的同一日期下方显示出勤率?

时间:2019-05-29 06:15:07

标签: php

我创建学生的每月出勤报告。我想在同一日期下方显示当前和缺席。

  <?php foreach ($status as $st): ?>
  <?php
  $date = date("d",strtotime($st['ats_date']));
    if ($dat['en_id'] == $st['en_id']) {
      // if ($st['ats_date'] != NULL){
        for ($row=1; $row <= 31; $row++) {
        if ($row == $date) {
          // code...

        if ($st['ats_status'] == 'Present' ) {

          echo "<th> P </th>";
        }
        elseif ($st['ats_status'] == 'Absent' ) {
          echo "<th> A </th>";
        }
        elseif ($st['ats_status'] == 'Leave' ) {
          echo "<th> L </th>";
        }
        else {
          echo "<th> H </th>";
        }
        }
          // }
          }
      }
     ?>
  <?php endforeach; ?>

enter image description here

我想要这个结果

enter image description here

1 个答案:

答案 0 :(得分:0)

代码中的几件事:

1)并非每个月都有31天。因此,您应该使用要显示的月份的最后一天作为结束号:

$last_day = date('t', THE_MONTH_YOU_ARE_DISPLAYING );

2)<th>标签用于表头。 <td>用于表格单元格

3)关于您的问题,您可以为该行使用一个空表单元格填充的数组:    $array = array_fill( 1 , $last_day, '<td></td>');

然后在您的代码中,确定从日期开始的月份中的天,将空单元格替换为 A,P,L或H

//get last day of month as maximum 
$last_day = date('t', $display-month );

//create empty array from 1 till last_day
$array = array_fill( 1 , $last_day, '<td></td>');

foreach ($status as $st){

    if ($dat['en_id'] == $st['en_id']) {
       //get the date of the record
       $day = date("d",strtotime($st['ats_date']));

       //determine the status
       if ($st['ats_status'] == 'Present' )$status = 'P'
       elseif ($st['ats_status'] == 'Absent' )$status = 'A'
       elseif ($st['ats_status'] == 'Leave' )$status = 'L';
       else $status = 'H';

       //replace the value on the exact day in the array with the status
       $array[ $day ]='<td>'.$status.'</td>';  
       }
//create table row
$student_status='<tr>'.implode('',$student_array).'</tr>';
echo $student_status;

注意:代码未经测试。