If you want application-wide config stuff that's constant across users, then you could write and keep up to date a config file with the relevant bits. If they're changing often, use a database instead.
The thing is, PHP pretty much shuts down between requests, so to retain information in the meantime you pretty much have to make plans to store it somewhere else.
So, to answer your original question again:
No.