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.
在我的索引页面的顶部,使用以下命令设置会话:
$_SESSION['language'] = 'english';
当我回显 $_SESSION['language'] 它回显'english',但是会话值在 PHP 类中不可读,这是为什么呢?
您必须先调用session_start(),然后才能访问$_SESSION超级全局
session_start()
$_SESSION
PHP session_start() 文档