PHP错误消息:数组到字符串转换

时间:2014-06-08 23:11:09

标签: php arrays codeigniter

我是codeigniter的新手,只是我收到了这个错误:

A PHP Error was encountered
Severity: Notice
Message: Array to string conversion
Filename: views/coba.php
Line Number: 52

仍然无法解决它。这是我在控制器上的代码:

public function getvalue()
{
 $result = $this->admin_model->harga();
 $data = array(
        'harga' => $result,
    );
 if ($this->input->post('btnKirim')==true) {
  $data['nama']=$this->input->post('nama');
  $data['tgl_masuk']=$this->input->post('tgl_masuk');
  $data['tgl_ambil']=$this->input->post('tgl_ambil');
  $data['berat']=$this->input->post('berat');
  $data['status']=$this->input->post('status');

 }
 $data['judul'] = 'Halaman Pegawai';
 $data['content'] = 'coba';
 $this->load->view('template/index',$data);

}

和我的模型的代码:

public function harga(){
    $query= $this->db->query('SELECT harga from satuan');
    return $query->result();
}

这是我的view.php,我收到此错误消息:

<div class="form-group">
<label for="total" class="control-label">Total Harga</label>
<div>
    <input name="total" id="total" type="numeric" class="form-control" value="<?php echo $harga; ?>" readonly='total'>
</div>
</div>

为什么我收到此消息,我该怎么做才能解决它?

2 个答案:

答案 0 :(得分:2)

方法result要么返回一个对象数组,要么返回一个空数组。无论哪种方式,方法harga都会返回一个数组。

由于您正在使用该结果来填充字段的值,因此不清楚您是否真的想要表格中的所有结果,或者只是某些特定结果,甚至只需要一个结果。无论您想要什么,都需要将其转换为标量值,以便能够在没有警告的情况下使用echo

可以迭代返回的结果,因此您可以执行以下操作:

public function harga() {

    // Since your HTML containts 'Total harga', I'm assuming you
    // have multiple results and you need to add them all up
    $result = 0

    foreach($query->result() as $row) {
        $output += $row->harga;
    }

    return $result;
}

如果只需要一个结果,请考虑使用$query->row()从表中获取单行(更好的是,在SQL查询中使用limitwhere

要完全了解您的问题,请查看documentation

答案 1 :(得分:0)

你可以试试代码:

$result = $this->admin_model->harga();
foreach($query->result() as $row) {
    $data['harga']= $row->harga;
}