zend_do_abstract_method())
From: Александр Москалёв [mailto:ir...@irker.net]
Sent: Tuesday, November 08, 2011 2:04 PM
To: Clint M Priest
Cc: internals@lists.php.net
Subject: Re: [PHP-DEV] Accessors Parsing
2011/11/8 Clint M Priest mailto:cpri...@zerocue.com>>
echo $o->Hours()."\r\n";
Why
2011/11/8 Clint M Priest
> echo $o->Hours()."\r\n";
Why use as method call? Why not "echo $o->Hours;" ?
With regards, Alexander Moskaliov
ir...@irker.net
Hi,
quick note: By introducing T_GET and T_SET, you disable people the
ability to name any function/method "set" or "get", which I'm sure
many people used. You should rather keep to T_STRING and check it's
value.
Best,
On Tue, Nov 8, 2011 at 15:26, Clint M Priest wrote:
> Working to implement G