将元素推入codeigniter中的数组

时间:2013-12-18 13:23:06

标签: php mysql arrays codeigniter

我是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']);

请在其中进行更正。 如何将元素推入数组。

1 个答案:

答案 0 :(得分:4)

就这样做

$data['userfile']=$_FILES['userfile']['name'];