如何获取页面的所有者
我正在考虑编写联系表格,但我需要联系表格的所有者,而不是填写表格的人。我该怎么做?
I'm thinking of writing a contact form but I need to get the owner of the form, not the person who filled out the form. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要获取页面的所有者,请查询
page_admin
FQL 表fql?q=从 page_admin 中选择 uid,其中 page_id=PAGEID
To get the owners of a page, query the
page_admin
FQL tablefql?q=SELECT uid FROM page_admin WHERE page_id=PAGEID
不确定您在这里寻找什么,但例如,如果表单所有者的用户登录了正在使用表单的位置,那么您可以从 $_SESSION 数组中获取他的用户名,前提是您将他的用户名保存到登录过程中的该数组。
Not sure what you are looking for here, but for instance if a user who's the owner of the form is logged in where the form is being used, then you can get his username from the $_SESSION array, given that you saved his username into that array upon the login process.