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.
我们正在开发一个在 YII PHP 框架中具有服务器端编码的移动应用程序(android、iphone)。有什么方法可以处理移动设备的登录会话和 cookie,或者 YII 是否支持任何设置来处理设备的 cookie 和会话?
我认为 Yii 对此提供了一些解决方案,但我不确定。
Cookie 只是处理会话 ID 的最常用方法,如果在应用程序中更容易编码,会话 ID 可以作为 GET 参数发送。
session_id($_GET['session_id']);