Re: [PHP-DEV] php feature

2007-04-12 Thread Oliver Block
Am Donnerstag, 12. April 2007 02:34 schrieb Richard Lynch: > So if you actally need shared data for a project, go to PHP-General > and describe your need/project, and see what folks recommend. No, I don't. I was interested to know if it has been discussed and what the rationale was. Thanks for yo

Re: [PHP-DEV] php feature

2007-04-12 Thread Adam Banko
Hi, I use ORM for sharing data between application processes. I think it fits well this use case. I think some well-defined, community-wide interface would be more beneficial than any implementation. If PECL, PEAR, and other extensions could implement this interface then the user could freely cho

Re: [PHP-DEV] php feature

2007-04-11 Thread Richard Lynch
On Wed, April 11, 2007 6:29 pm, Oliver Block wrote: > did you ever discuss a feature like 'application variables'? What I > mean is that a bunch of scripts builds a logic application which is > e.g. able to share variables. While session variables can be used to > store values between script files

Re: [PHP-DEV] php feature

2007-04-11 Thread Andrey Hristov
Oliver Block wrote: > Hello, > > did you ever discuss a feature like 'application variables'? What I mean is > that a bunch of scripts builds a logic application which is e.g. able to > share variables. While session variables can be used to store values between > script files for a single use

Re: [PHP-DEV] php feature

2007-04-11 Thread Jarismar Chaves da Silva
I believe you can easily address this by using some non-volatile, application wide storage, like file system, or cookies. You can also implement a session handler and define some logic to load and save values from session in a transparent way. Oliver Block wrote: Hello, did you ever discuss

[PHP-DEV] php feature

2007-04-11 Thread Oliver Block
Hello, did you ever discuss a feature like 'application variables'? What I mean is that a bunch of scripts builds a logic application which is e.g. able to share variables. While session variables can be used to store values between script files for a single user , 'application variables' stor