在 PHP 中构建多通知系统的最佳方式

我目前正在开发一个移动应用程序,可以让你向朋友询问收藏夹,它是一个HTML5前端和一个PHP后端。我坚持认为构建通知系统的最佳方法是什么,尤其是数据库架构而不是实际代码本身。

移动应用程序流如下所示:

  • 用户请求帮助
  • 用户可以选择;通知所有朋友,通知收藏的朋友或通知亲密的朋友
  • 根据用户的选择,人们会收到通知

在PHP和MySQL中执行此操作的最佳方法是什么?我并不是真的要求任何人给我写PHP代码,而是绘制出最理想的MySQL表和字段模式,因为这是我目前坚持的。提前感谢您的帮助。


答案 1

您可以创建通知表,例如:

from_user | to_user | notification | seen

然后,每当您要通知用户时,只需添加一条包含所需信息的记录并设置为 / 。seen0false

然后,当用户阅读通知时,您将该参数设置为 / 。1true

例:

from_user | to_user | notification | seen
    -          -          -           -

用户 john notify user jeff:

from_user | to_user | notification | seen
   john      jeff       whatever..    0

用户杰夫阅读了通知:

from_user | to_user | notification | seen
   john      jeff       whatever..    1  

答案 2

为什么不在名为“通知”的表格中列出所有通知

id | user_id | from_user_id | notification
  • id = 通知 ID
  • user_id = 通知对象是谁?
  • from_user_id = 谁发送了通知?
  • 通知 = 消息

然后作为伪代码:

// Create a notification from User A to User B
$this->db->insert ('notifications', array ('user_id' => $friends_id, 'from_user_id' => $current_user_id, 'notification' => $message));

 // The meanwhile, on your home page or somewhere, wherever you want to display notifications
 $this->db->where ('user_id', $current_user_id)
 $notifications = $this->db->get ('user_id');
 foreach ($notifications as $notification)
 {
         // Display the notification as needed
         // Optionally delete the notification as it is displayed if it is a "one off" alert only
 }

推荐