如何使用Codeignite计算列的总和

时间:2016-06-09 10:46:14

标签: php codeigniter

控制器

这是控制器页面。

public function index() {
$data = array(
     'year' => $this->year_model->list_all(),
     'speces' => $this->speces_model->list_all(),
       );
          foreach ($data['year'] as $value):

                $temp = array();
                $temp['year_key'] = $value['year-range'];
                $temp['year_id'] = $value['id'];


                $temp['speces_key'] = array();
                foreach ($data['speces'] as $value1):

                    $temp['speces_key'][$value1['name']] = $this->db->get_where('expendituredata', array('spacesId' => $value1['id'], 'yearId' => $value['id']))->row_array();

                endforeach;
                $final_result[] = $temp;

            endforeach;
            $data['result'] = $final_result;
            $this->load->view('site/template', $data);
        }

模型

public function list_all() {
        return $this->db->get('year')->result_array();
    }

查看

这是查看文件。

 <table>
 <thead>
      <tr>
        <th>Year Range</th>
        <?php foreach ($speces as $value): ?>
         <th> <?php echo $value['name']; ?></th>
          <?php endforeach; ?>
          <th>TOTAL</th>
           </tr>
  </thead>
   <tbody>
       <?php foreach ($result as $value): ?>
          <?php $sum = 0; ?>
           <tr>
              td><?php echo $value['year_key']; ?></td>

                <?php foreach ($value['speces_key'] as $key => $value2): ?>
                  <td><?php echo $value2['data']; ?></td>
                    <?php $sum+= $value2['data']; ?>
                  <?php endforeach; ?>
                <td><?php echo $sum; ?></td>
                </tr>
     <?php endforeach; ?>
                <tr>
                    <td>Total</td>
                </tr>
</table>

ScreenShot of Table

我的问题:如何计算上面屏幕截图中每列的总和(总计)。

所以请查看以上所有动物的截图和计算总数。

0 个答案:

没有答案