Persistent global variable?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • howachen@gmail.com

    #1

    Persistent global variable?

    Hi,

    Are there something like a `Persistent global variable` in PHP?

    It is something like `Application` in the classic ASP, all the request
    share the same variable, and the die after a timeout.

  • Oli Filth

    #2
    Re: Persistent global variable?

    howachen@gmail. com said the following on 27/09/2006 16:49:
    Hi,
    >
    Are there something like a `Persistent global variable` in PHP?
    >
    It is something like `Application` in the classic ASP, all the request
    share the same variable, and the die after a timeout.
    >
    Sessions.


    Be aware that sessions are not cross-user though. Each user has their
    own set of independent persistent variables.

    --
    Oli

    Comment

    • Oli Filth

      #3
      Re: Persistent global variable?

      David Gillen said the following on 27/09/2006 17:22:
      An noise sounding like Oli Filth said:
      >howachen@gmail. com said the following on 27/09/2006 16:49:
      >>Hi,
      >>>
      >>Are there something like a `Persistent global variable` in PHP?
      >>>
      >>It is something like `Application` in the classic ASP, all the request
      >>share the same variable, and the die after a timeout.
      >>>
      >Sessions.
      >http://php.net/manual/features.sessions.php
      >>
      >Be aware that sessions are not cross-user though. Each user has their
      >own set of independent persistent variables.
      >>
      Pass the same session id to session_id() after you start the session should
      give you the same session for all users. A bit hacky though. If it even works.
      Can't see why it wouldn't though.
      >
      Of course, that then presents the users from having any "personal"
      variables at all...


      --
      Oli

      Comment

      Working...