我在我的boot圈子里有密码。
protected function _userSession(){
$session=new Zend_Session_Namespace("userIdentity");
$session->greet="Hello!!!!!";
Zend_Registry::set("session", $session);
}
在控制人员一书中写:
public function index() {
$session = Zend_Registry::get("session");
echo $session->greet;
}
但它将显示错误信息,如: 主要会议没有登记入册。 这部法典有什么错误。 任何解决办法。