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.
如何继续在 php 中制作像foursquare 这样的签到功能的系统?
我想构建一个这样的功能,但我不知道如何启动它(只是签入功能)。您的帮助将不胜感激。
一种简单的方法是使用用户、位置和签入 SQL 表,并在签入表中设置外键。任何时候有人在某个位置签到,您都可以在该表中添加一个条目。
显然,架构在foursquare这样的规模上会有所不同。您可能希望使用 NoSQL 或类似的东西(JSON、MongoDB)和相同的“签入表”方法,但为更快的遍历而构建。