|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-10-09 17:54 UTC] yohgaki@php.net
-Status: Open
+Status: Not a bug
[2016-10-09 17:54 UTC] yohgaki@php.net
[2016-10-10 10:05 UTC] nikic@php.net
-Status: Not a bug
+Status: Assigned
-Assigned To:
+Assigned To: nikic
[2016-10-10 10:21 UTC] nikic@php.net
[2016-10-10 10:21 UTC] nikic@php.net
-Status: Assigned
+Status: Closed
[2016-10-17 10:07 UTC] bwoebi@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 22:00:01 2025 UTC |
Description: ------------ session_unset() empties values from all variables in which is $_session stored Test script: --------------- <?php session_start(); $_SESSION['test'] = true; $var = $_SESSION; session_unset(); print_r($var); Expected result: ---------------- Array ( [test] => 1 ) Actual result: -------------- Array ( )