On 15/08/06, Richard Lynch <ceo@xxxxxxxxx> wrote:
On Mon, August 14, 2006 8:40 am, Ville Mattila wrote: > Does the PHP environment (5.1.4) provide a way to define some custom > variables as a superglobal? It would be useful for saving certain site > preferences and settings that must be referred in many variables and > classes, without every time writing global keyword at the beginning of > a > function definition. ...or why not keep it simple and use include_once/require_once? I generally have a config file for every app that contains constants, variables and so on that are used across the application.