php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #14536 session_unregister not unregistering sessions
Submitted: 2001-12-15 13:08 UTC Modified: 2001-12-15 13:41 UTC
From: loll at thedaisypatch dot net Assigned:
Status: Not a bug Package: Session related
PHP Version: 4.1.0 OS: debian 2.2.19pre17
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: loll at thedaisypatch dot net
New email:
PHP Version: OS:

 

 [2001-12-15 13:08 UTC] loll at thedaisypatch dot net
starting session with session_register..
The session variable will display.. but after calling the session_unregister command... the session variable still remains...

<?
session_start();
if($page == ""){
$test = "hello";
session_register("test");
}

elseif($page=="u"){
	session_unregister("test");
}

else
{
echo "$test";
}
?>

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-12-15 13:11 UTC] derick@php.net
What is the version of the Zend Engine, as shown by the output of phpinfo(); ?

Derick
 [2001-12-15 13:24 UTC] loll at thedaisypatch dot net
ZEND_DEBUG = disabled

This program makes use of the Zend Scripting Language Engine:
Zend Engine v1.1.0, Copyright (c) 1998-2001 Zend Technologies
 [2001-12-15 13:37 UTC] loll at thedaisypatch dot net
ZEND_DEBUG = disabled

This program makes use of the Zend Scripting Language Engine:
Zend Engine v1.1.0, Copyright (c) 1998-2001 Zend Technologies
 [2001-12-15 13:41 UTC] sniper@php.net
You're not using the official release of PHP.
Get the REAL release from php.net.

--Jani

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun May 05 13:01:30 2024 UTC