Re: [PHP-DEV] RFC: allow_call_pass_by_reference

2008-05-22 Thread LEW21
2008/5/22, Alexey Zakhlestin [EMAIL PROTECTED]: On Wed, May 21, 2008 at 10:46 PM, LEW21 [EMAIL PROTECTED] wrote: Sometimes call time pass by reference is useful, for example when you want to make it possible to omit an param (normally passed by reference) by setting null. With no call

Re: [PHP-DEV] RFC: allow_call_pass_by_reference

2008-05-21 Thread LEW21
Sometimes call time pass by reference is useful, for example when you want to make it possible to omit an param (normally passed by reference) by setting null. With no call time pass by reference, programmers are required to write: $null = null; foo($null); Deleting it isn't a good idea, it

[PHP-DEV] Re: Class Properties in Interfaces?

2008-05-07 Thread LEW21
Hi, On May 7, 2008, at 2:12 AM, Jeff Moore wrote: Specifying the accessor methods in an interface reveals too much of the implementation. Properties (the kind with accessor methods) are themselves an abstract concept. You want to be able to take an interface definition such as: interface