Jump to content

static variables/functions


sneskid

Recommended Posts

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.
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.
[!--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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.