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.
标题说明了一切。由于 laravel 的会话抽象层,我不知道如何在 php 5.4 中检索 session.upload_progress
当我尝试打印 $_SESSION 它返回一个空数组
我错过了什么?
好吧,我回答了我自己的问题,意识到我颠倒了 Form::hidden 方法的“值和名称”值。
但我仍然必须设置 PHP 会话 ID
session_id($_COOKIE["PHPSESSID"]);
session_start();
在我能够获得会话内容之前......必须有更好的方法吗?