过滤在线 FBML 好友

发布于 2024-09-08 20:50:58 字数 63 浏览 3 评论 0原文

好的,我有这个用户朋友数组,我只是想知道如何过滤掉离线的朋友,以便数组中只有在线的朋友:D

谢谢

Ok, I have this array of a users friends, and I'm just wondering how I can filter out the ones that are offline so that I only have the online ones in the array :D

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

子栖 2024-09-15 20:50:58

您不需要这样做,您只需考虑当前登录的用户,无论是您还是其他任何人,并且在幕后它都会登录。您应该简单地检查用户是否登录(任何用户,包括朋友):

if ($facebook->user > 0 && isset($facebook->user))
{
  // your code here....
}

仅当用户登录时,条件中的代码才会运行。

You don't need to do that, you just have to account for current logged in user whether it is you or anyone else and behind the scenes it will be however is logged in. You should simply make a check if a user is logged in (any user including friend):

if ($facebook->user > 0 && isset($facebook->user))
{
  // your code here....
}

The code in the condition will run only if a user is logged in.

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