> What is the chance this will change?
>
> class foo
> {
>     function fopen()
>     {
>         echo "fopen()\n" ;
>     }
> }
>
> is perfectly valid, but
>
> class foo
> {
>     function include()
>     {
>         echo "include()\n" ;
>     }
> }
>
> throws parser error ('expecting T_STRING...').
> This is quite annoying.

Unlikely.  Overloading language primitives could get really nasty.

-Rasmus


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to