Re: [PHP-DEV] RFCs and organisation

2012-07-26 Thread Evert Pot
On Jul 26, 2012, at 7:53 PM, Kris Craig wrote: > On Thu, Jul 26, 2012 at 10:47 AM, Andrew Faulds wrote: > >> On 26/07/12 18:46, Levi Morrison wrote: >> >>> I'm in favor of an RFC app on the condition it has a nice UX and has >>> complete unit tests. >>> >> Welp, guess it's time for me to learn

Re: [PHP-DEV] Local time zone

2011-12-12 Thread Evert Pot
On Dec 11, 2011, at 1:07 PM, Pierre Joye wrote: > hi, > > On Sun, Dec 11, 2011 at 1:59 AM, Oleg Oshmyan wrote: > >> I am willing to work on patches but I suppose some consensus should be >> reached first. > > The consensus was that you have to set a valid default timezone in php.ini I feel th

Re: [PHP-DEV] Remove variable function and method calls

2010-07-22 Thread Evert Pot
On 2010-07-23, at 2:49 AM, Karoly Negyesi wrote: > > So you do not consider it utterly confusing that > > classname::$foo > classname::$foo() > > mean two completely different things? The first reads a property the > second reads a local variable. Any time you need to backtrack when you > the so

Re: [PHP-DEV] Upload progress

2006-08-08 Thread Evert Pot
Easiest way to go would then be flash or a java applet.. all the other methods i can think of are either php extensions or perl.. steve wrote: We do a "web 2.0" type upload, and show a spinner. When the file is large or the connection slow, people sometimes abort thinking that there was a probl

Re: [PHP-DEV] Missing __toString() part

2006-06-05 Thread Evert Pot
Any chance this could be done in the form of an interface, instead of a magic function? Evert Dmitry Stogov wrote: We probably should support this, but not only for __toString(). Objects may also have internal get() (not __get()) and cast() handlers that should be supported too. Also usage of

Re: [PHP-DEV] php 5.2.0

2006-05-02 Thread Evert Pot
Hi Marcus, Thanks for your quick response. First I need to say I'm not really trying to compare this with the PHP streams wrappers.. the streams wrappers do a lot more than just streaming bytes, they even know about files and directories... Marcus Boerger wrote: XMLReader/XMLWriter have not

Re: [PHP-DEV] php 5.2.0

2006-05-02 Thread Evert Pot
Hi People, I'm not sure this is the right place to make a feature request, but here goes.. I noticed some upgrades/ideas in the streams system lately.. Is there any chance at all this can be migrated to an OOP system? Here's the kind of think i would really like to see (java does it the sa