0
嗨,我是在CakePHP中新,我想保存在數據庫 這裏有些陣列中的數據是我的代碼如何在cakephp3的數據庫中保存數組數據?
$user = $this->Users->newEntity();
if ($this->request->is('post')) {
$user = $this->Users->patchEntity($user, $this->request->data);
$userdata=[
'firstname'=>$user['firstname'],
'lastname'=>$user['lastname'],
'nationcod'=>$user['nationcod'],
'usrename'=>$user['username'],
'password'=>$user['username']
];
$this->Users->save($userdata);
,但是當我測試了這個錯誤發生: 調用一個成員函數錯誤()上陣列。 我只想更改用戶發佈的數據並將其保存在用戶表中。