php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #10063 Session variable aren't visible from class
Submitted: 2001-03-29 12:49 UTC Modified: 2001-03-29 13:01 UTC
From: thierry dot bertin at videotron dot ca Assigned:
Status: Closed Package: Class/Object related
PHP Version: 4.0.4pl1 OS: linux mandrake 7.2
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: thierry dot bertin at videotron dot ca
New email:
PHP Version: OS:

 

 [2001-03-29 12:49 UTC] thierry dot bertin at videotron dot ca
I hope you excuse me for my poor english...

So, i try to use a session and sessions variables in php.
It's work fine, but when i try to use a variable into a object class, the values of my variables aren't visible thru the clas and function of this class.

I declare the variables as global in the class constructor, then i can acces to the value but not in a function of this class.

regards

Thierry

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-03-29 13:01 UTC] hholzgra@php.net
you have to use global in every class method
class methods behave exactly like normal functions
in this context, a global declaration within
the constructor is local to the constructor method
itself and will *not* be remembered in the other
methods
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Mon Oct 14 17:01:28 2024 UTC