Function request

php.internals

Jakes

22 years ago
Hi all I'm not to sure where to actually post this, but maybe you guys can help out. This is more of a request than anything else. What I'm looking for is function or a constant that will keep track of session that are currently in use in memory. This should just return a integer. eg. <?php print session_current(); //returns 4 - These are currently active ?> Thanks in advance... J

Sean Coates

22 years ago
This can be done in user space, using custom session handlers. [plug]http://phparch.com/sample.php?mid=22[/plug] S Jakes wrote:

Jakes

22 years ago
Please can you explain to me how this is done, without having to create some sort of data storage facility. Regards Jakes "Sean Coates" <sean@caedmon.net> wrote in message news:4078155E.5060403@caedmon.net...
> This can be done in user space, using custom session handlers. > [plug]http://phparch.com/sample.php?mid=22[/plug] > > S > > > Jakes wrote: > > What I'm looking for is function or a constant that will keep track of
session that are currently in use in memory. This should just return a integer.

Wez Furlong

22 years ago
The internals@ list is not the appropriate forum for this discussion. Try php-general@lists.php.net instead. ----- Original Message ----- From: "Jakes" <sunsoffun@hotmail.com> To: <internals@lists.php.net> Sent: Sunday, April 11, 2004 1:10 PM Subject: Re: [PHP-DEV] Function request
> Please can you explain to me how this is done, without having to create
some

Jakes

22 years ago
Hi Wez Please can you send me in the right direction, for requesting a function to be added to the php core. J "Wez Furlong" <wez@thebrainroom.com> wrote in message news:000601c41fbf$21fcd990$8a02a8c0@tron...
> The internals@ list is not the appropriate forum for this discussion. > Try php-general@lists.php.net instead. > > > ----- Original Message ----- > From: "Jakes" <sunsoffun@hotmail.com> > To: <internals@lists.php.net> > Sent: Sunday, April 11, 2004 1:10 PM > Subject: Re: [PHP-DEV] Function request > > > > Please can you explain to me how this is done, without having to create > some > > sort of data storage facility. > > > > Regards > > > > Jakes > > > > > > "Sean Coates" <sean@caedmon.net> wrote in message > > news:4078155E.5060403@caedmon.net... > > > This can be done in user space, using custom session handlers. > > > [plug]http://phparch.com/sample.php?mid=22[/plug] > > > > > > S > > > > > > > > > Jakes wrote: > > > > What I'm looking for is function or a constant that will keep track
of

Derick Rethans

22 years ago
On Sun, 11 Apr 2004, Jakes wrote:
> Please can you send me in the right direction, for requesting a function to > be added to the php core.
This doesn't belong in PHP as it's an application thing. Also, there is no way this can be added to PHP with the current framework, hence Wez pointing you to the correct list to discuss a script-level solution. Derick