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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
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

Pull Requests

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-2025 The PHP Group
All rights reserved.
Last updated: Wed May 07 12:01:32 2025 UTC