Ion Auth update_user() 不更新用户

发布于 2024-12-16 14:35:38 字数 320 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情感失落者 2024-12-23 14:35:38

我找到了答案。问题是作者没有更新用户指南。因此,我必须通过代码并找到解决方案。除此之外,该函数并不是文档中唯一应该更改的函数。有许多。我希望他快点更新。

解决方案

而不是

$this->ion_auth->update_user($id, $data); 

使用

$this->ion_auth->update($id, $data); 

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

$this->ion_auth->update_user($id, $data); 

Use

$this->ion_auth->update($id, $data); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文