Jump to content

static variables/functions


sneskid

Recommended Posts

thats helps

but my major question is how to allow php scripts running at the same time to share data.
(say 10 people access the site at the same time)

i could use a database to lug data back and forth, but there has to be an easier way
Link to comment
Share on other sites

There is many ways of doing this, and really, it depends how much data there is and how often it maight change if at all.

An easy option for minimal amounts of unchanging data is to just store it in variables and include this in each script that needs it.

Another easy option and one which allows you to update the data more easily is to use a database / text files.

Maybe another approuch would be to use a registry pattern? Like I say... It really depnds on the data. There is no such thing as an [i]application[/i] wide object in php, though you could easily create one.
Link to comment
Share on other sites

I've considered the database/txt file options, and would like to avoid them if possible.
Actually I don't mind the database way as much. But I need something with less overhead.

It would be nice to just share data in memory through some kind of super global array. (in order to avoid reading from the HD every time)

How would I go about setting up this application wide object.
Link to comment
Share on other sites

[!--quoteo--][div class=\'quotetop\']QUOTE[/div][div class=\'quotemain\'][!--quotec--]How would I go about setting up this application wide object.[/quote]
The easiest way would be to use the registry pattern. Im not sure how versed you are in OOP concepts but there is an article [a href=\"http://www.phppatterns.com/docs/design/the_registry\" target=\"_blank\"]here[/a] that might help you.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.