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
> >
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 shoul
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:
>
> inte