使用 phpBB3 user_add() 函数
我正在尝试在我现有的网站上使用 phpbb3 论坛。 我的网站有自己的注册系统,我正在尝试使用user_add()
,因此注册后用户将同时注册到网站和论坛。
问题是我在外部 web 应用程序上使用名为 User
的类,并且 phpBB 尝试创建一个具有相同名称的类。
所以我得到这个:
PHP Fatal error: Cannot redeclare class user in /home/x/public_html/forum/includes/session.php on line 2360
有没有办法找到解决方法?我真的不想改变我的班级名称。
谢谢,
I'm trying to use phpbb3 forums on my already existing website.
My website has its own registration system and i'm trying to use the user_add()
so upon register the user will be registered to both the website and the forums.
The problem is that I use a class named User
on my external webapp, and phpBB tries to create a class with the same name.
So i'm getting this:
PHP Fatal error: Cannot redeclare class user in /home/x/public_html/forum/includes/session.php on line 2360
Is there any way to find a workaround for this? I really don't want to change my class name.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 5.3,则有 PHP 命名空间。
There are PHP namespaces, if you're on 5.3.