ID: 33786
Updated by: [EMAIL PROTECTED]
Reported By: simon dot bettison at blueyonder dot co dot uk
-Status: Open
+Status: Bogus
Bug Type: Session related
Operating System: Gentoo Linux
PHP Version: 5.1.0b3
New Comment:
| is not allowed in variable names. (yes, I know you can use it in
array indexes, but $_SESSION is special in many ways)
Previous Comments:
------------------------------------------------------------------------
[2005-07-20 13:23:54] simon dot bettison at blueyonder dot co dot uk
Description:
------------
A script registers a variable in $_SESSION using and index value which
contains a pipe ("|"),
ie
$index = "some|index";
$_SESSION[$index]="some variable";
I expected this variable (and any other variables registered in
$_SESSION) to be stored, and made available to other script(s) executed
in the same session for the lifetime of the session cookie.
However, subseqent access to $_SESSION indicates that the $_SESSION
variable contains no data at all.
This only seems to occur following the use of the pipe ("|") character
in the element's index.
Reproduce code:
---------------
<?php
session_start();
print_r($_SESSION);
$_SESSION["some|variable"]="some value";
print_r($_SESSION);
?>
Expected result:
----------------
First execution:
Array ( ) Array ( [some|variable] => some value )
Second & Subsequent execution
Array ( [some|variable] => some value ) Array ( [some|variable] => some
value )
Actual result:
--------------
First execution:
Array ( ) Array ( [some|variable] => some value )
Second & Subsequent execution
Array ( ) Array ( [some|variable] => some value )
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=33786&edit=1