Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 MyBB 论坛与另一个需要来自 MyBB 数据库的用户数据的应用程序集成。但是,问题是没有这样的功能来通过用户名检索用户数据,但是,我们可以get User data By ID..现在,有没有简单有效的方法通过传递用户名来获取用户数据?先感谢您。
get User data By ID
是的,您可以通过用户名获取用户,但它没有内置功能。您可以检查 ./inc/functions_user.php 文件,有一个函数用于在注册时通过用户名检查用户是否存在。
您可以将其用作自己编写代码的参考。