Ion Auth update_user() 不更新用户
我正在尝试使用 update_user 函数更新用户。但我有这个错误。
致命错误:未捕获异常“异常”,消息为“调用了未定义的方法 on_auth::update_user()”
我的代码是
$id = 8;
$data = array(
'first_name' => 'Ben',
'last_name' => 'Edmunds',
);
$this->ion_auth->update_user($id, $data);
I'm trying to update an user with update_user function. But I have got this error.
Fatal error: Uncaught exception ‘Exception’ with message ‘Undefined method on_auth::update_user() called’
My code is
$id = 8;
$data = array(
'first_name' => 'Ben',
'last_name' => 'Edmunds',
);
$this->ion_auth->update_user($id, $data);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了答案。问题是作者没有更新用户指南。因此,我必须通过代码并找到解决方案。除此之外,该函数并不是文档中唯一应该更改的函数。有许多。我希望他快点更新。
解决方案
而不是
使用
I found the answer. The problem is the author didn't update user guide. Therefore, I had go through codes and found the solutions. In addition to that, this function is not the only function that should have changed in documentation. There are many. I hope he updates soon.
Solution
Instead of
Use