2017-08-26 193 views
0

我正在使用笨3.PHP错误:阵列对象转换成关联数组

每当编辑记录和数据是无效一个 CRUD应用程序,而不是仅仅示出了验证错误消息,该浏览器输出消息:Trying to get property of non-object。在控制器

我的更新功能如下:

public function update($customer_id) { 
    // data validation 
    $this->form_validation->set_rules('first_name', 'First name', 'required'); 
    $this->form_validation->set_rules('last_name', 'Last name', 'required'); 
    $this->form_validation->set_rules('email', 'Email address', 'required|valid_email'); 
    $this->form_validation->set_rules('phone', 'Phone number', 'required'); 
    $this->form_validation->set_rules('country', 'Country', 'required'); 
    $this->form_validation->set_error_delimiters('<p class="error">', '</p>'); 

    if ($this->form_validation->run()) { 
     $data = [ 
     // insert into these database table fields 
     'first_name' => $this->input->post('first_name'), 
     'last_name' => $this->input->post('last_name'), 
     'email' => $this->input->post('email'), 
     'phone' => $this->input->post('phone'), 
     'country' => $this->input->post('country'), 
     'city' => $this->input->post('city'), 
     'address' => $this->input->post('address') 
     ]; 
     $this->load->model('Customer'); 
     if ($this->Customer->updateCustomer($customer_id, $data)) { 
      $this->session->set_flashdata('update-response','Customer successfully updated'); 
     } else { 
      $this->session->set_flashdata('update-response','Failed to update customer'); 
     } 
     redirect('home'); 
    } else { 
    $data = [  
     'first_name' => $this->input->post('first_name'), 
      'last_name' => $this->input->post('last_name'), 
      'email' => $this->input->post('email'), 
      'phone' => $this->input->post('phone'), 
      'country' => $this->input->post('country'), 
      'city' => $this->input->post('city'), 
      'address' => $this->input->post('address'), 
     'id' => $customer_id 
    ]; 
    $this->load->view('update', ['customer' => $data]); 
} 
} 

如果在更新表单中的数据是有效的,没有错误。的形式是这样的:

<?php echo form_open("home/update/{$customer->id}"); ?> 

      <div class="form-group <?php if(form_error('first_name')) echo 'has-error';?>"> 
       <?php echo form_input('first_name', set_value('first_name', $customer->first_name),[ 
        'id' => 'first_name', 
        'class' => 'form-control' 
        ]); 
       if(form_error('first_name')) echo '<span class="glyphicon glyphicon-remove"></span>'; 
       echo form_error('first_name'); ?>          
      </div> 

      <div class="form-group <?php if(form_error('last_name')) echo 'has-error';?>"> 
       <?php echo form_input('last_name', set_value('last_name', $customer->last_name), [ 
        'id' => 'last_name', 
        'class' => 'form-control' 
        ]); 
       if(form_error('last_name')) echo '<span class="glyphicon glyphicon-remove"></span>'; 
       echo form_error('last_name'); ?> 
      </div> 

      <div class="form-group <?php if(form_error('email')) echo 'has-error';?>"> 
       <?php echo form_input('email', set_value('email', $customer->email), [ 
        'id' => 'email', 
        'class' => 'form-control' 
        ]); 
       if(form_error('email')) echo '<span class="glyphicon glyphicon-remove"></span>'; 
       echo form_error('email'); ?> 
      </div> 

      <div class="form-group <?php if(form_error('phone')) echo 'has-error';?>"> 
       <?php echo form_input('phone', set_value('phone', $customer->phone), [ 
        'id' => 'phone', 
        'class' => 'form-control' 
        ]); 
       if(form_error('phone')) echo '<span class="glyphicon glyphicon-remove"></span>'; 
       echo form_error('phone'); ?> 
      </div> 

      <div class="form-group <?php if(form_error('country')) echo 'has-error';?>"> 
       <?php echo form_input('country', set_value('country', $customer->country), [ 
        'id' => 'country', 
        'class' => 'form-control' 
        ]); 
       if(form_error('country')) echo '<span class="glyphicon glyphicon-remove"></span>'; 
       echo form_error('country'); ?> 
      </div> 

      <div class="form-group"> 
       <?php echo form_input('city', set_value('city', $customer->city), [ 
        'id' => 'city', 
        'class' => 'form-control' 
        ]); 
       ?> 
      </div> 

      <div class="form-group"> 
       <?php echo form_input('address', set_value('city', $customer->address), [ 
        'id' => 'address', 
        'class' => 'form-control' 
        ]); 
       ?> 
      </div> 

      <div class="form-group"> 
       <?php echo form_submit('submit', 'Save', 'class = "btn btn-success btn-block"'); ?> 
      </div> 

<?php echo form_close(); ?> 

相信$customer变成关联数组,这是该错误消息的原因:Trying to get property of non-object。但是,这种转换的原因是什么?或者是问题的原因完全不同?

回答

0

But what is causing this conversion?

没什么,你传递一个数组,你得到一个数组,你试图访问像一个对象。

在您的示例中,$data是一个数组,但在您的视图中,您正在像访问对象一样访问它。

如果你真的想进入它像一个对象,投数组对象:

$this->load->view('update', ['customer' => (object)$data]); 
+0

甜!任何可能优化上面的代码? –

+0

什么是优化?我没有看到有太多的事情要做,因为这只是一个简单的形式,只是当你在视图中回显变量时要小心,确保你编码它们以避免任何XSS问题。 – Twisted1919

+0

开箱即用的CI安全吗? –