在 php 中使用会话控制中遇到的难题
在阅读《php 和 mysql web 开发》第 23 章时,可能遇到如下代码片段:
session_start(); $_session_['sess_var'] = "hello world"; echo $_session['sess_var']; echo 'the content of $_session['sess_var'] is '.$_session['sess_var'].'<br />';
然而,执行此代码时,会出现错误,提示 _session_ 未定义。要解决这个问题,需要将 _session_ 替换为 $_session:
session_start(); $_SESSION['sess_var'] = "Hello World"; echo $_SESSION['sess_var']; echo 'The content of $_SESSION['sess_var'] is '.$_SESSION['sess_var'].'<br />';
修改后的代码可以正常运行,输出 “hello world” 和 “the content of $_session[‘sess_var‘] is hello world”。
立即学习“PHP免费学习笔记(深入)”;