我是codeigniter的新手,我有以下数组:
$data = array(
'username' => $this->input->post('uname'),
'fname' => $this->input->post('fname'),
'lname' => $this->input->post('lname'),
'phone' => $this->input->post('phone'),
'email' => $this->input->post('email'),
'password' => $this->input->post('pass'),
'bdate' => $this->input->post('date'),
'status' => $this->input->post('status')
);
我想在
中推送以下项目$data = array_push($data, 'userfile', $_FILES['userfile']['name']);
请在其中进行更正。 如何将元素推入数组。
答案 0 :(得分:4)
就这样做
$data['userfile']=$_FILES['userfile']['name'];