Re: [PHP-DEV] PDO Extension contributions

2013-05-03 Thread Ferenc Kovacs
2013.05.02. 1:33, "Tom Samplonius" ezt írta: > > > On 2013-05-01, at 6:28 AM, Guilherme Capilé wrote: > > > Ola Ferenc, > > > > I'm willing to resurrect the development, how can I do it? Right now > > I'm having trouble in making a simple patch applied... > > > ... > > I support that. When some

Re: [PHP-DEV] property de-referencing

2013-05-03 Thread Lazare Inepologlou
2013/5/2 Bernhard Schussek > 2013/5/1 Rasmus Schultz > > > > One could > > > write a PropertyReference class right now with literally the only > > > difference being the lack of a builtin operator (ie new > > > PropertyReference($obj, 'prop') versus ^$obj->prop): the fact that > > > nobody seem

Re: [PHP-DEV] property de-referencing

2013-05-03 Thread Rasmus Schultz
That's an interesting spin on the idea, but it takes away the ability to lazy-evaluate an entire path - now it works only for the last property, which may not always be optimal or desirable. I don't personally have a problem with putting the operator before the expression, I think that's clear eno

Re: [PHP-DEV] property de-referencing

2013-05-03 Thread Nikita Popov
On Fri, May 3, 2013 at 1:32 PM, Rasmus Schultz wrote: > That's an interesting spin on the idea, but it takes away the ability to > lazy-evaluate an entire path - now it works only for the last property, > which may not always be optimal or desirable. > > I don't personally have a problem with put