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.
想象以下场景:
1) 用户来到一个站点 2) 用户在站点上的购物车中添加了 5 个产品:
session_start(); $_SESSION['cart'] = array(1,4,7,12,20);
session_start();
$_SESSION['cart'] = array(1,4,7,12,20);
3) 用户合上笔记本电脑的盖子并让电脑进入睡眠状态 4) 8 小时过去 5) 用户移动到另一个位置,另一个互联网连接,另一个 IP 6) 用户打开笔记本电脑的盖子,恢复浏览器 7)产品仍在购物车中
我们如何实现第 7 步可以/将会发生?