我在 Drupal 模块中有几行代码,如下所示:
if ($arg == 'true' && isset($_SESSION['xyz']['noredirect'])) {
unset($_SESSION['xyz']['noredirect']);
}
执行第二行时,出现错误:
Error messageNotice: Undefined variable: _SESSION in blah() (line 122 of /home/xxxxxxx/public_html/sites/all/modules/blah/blah.module).
我根本无法理解为什么如果设置了会话,我就不能取消它。
有任何想法吗?
谢谢