[PHP-DEV] ext/mysqli @ mysqlnd: "unofficial" MySQL Server patch for types results / native types

2008-09-19 Thread Ulf Wendel
Hi! Based on some discussions with Facebook, Tuenti and Andrey we have developed an "unofficial" MySQL Server patch. Furthermore we have added a new function to ext/mysqli which only purpose is to access functionality available only with a patched MySQL Server. Therefore we have not committed

Re: [PHP-DEV] php7- dropping the $ from the variable name - rfc

2008-09-19 Thread Hannes Magnusson
On Thu, Sep 18, 2008 at 16:47, marius popa <[EMAIL PROTECTED]> wrote: > I was looking at the examples used in php.js library > http://phpjs.org/functions/index > and it struck me that is cleaner to read the functions and code without the > $ names in it > > From what i understand $ in front of var

Re: [PHP-DEV] php7- dropping the $ from the variable name - rfc

2008-09-19 Thread troels knak-nielsen
On Fri, Sep 19, 2008 at 10:50 AM, Hannes Magnusson <[EMAIL PROTECTED]> wrote: > I totally agree. Its really annoying needing to type $ all the time, > not to mention how hard it is on Norwegian keyboards. Lets replace it > with £ ! > There is even a "patch" available: > http://php.markmail.org/mess

Re: [PHP-DEV] php7- dropping the $ from the variable name - rfc

2008-09-19 Thread Dmitry Stogov
Alain Williams wrote: > On Thu, Sep 18, 2008 at 11:30:37AM -0700, Ionut Gabriel Stan wrote: > >> Actually, I somehow understand what he wants, considering we'll soon have >> lambdas and closures. I mean, in case of javascript a variable can hold as >> well a function as it can hold anything e

Re: [PHP-DEV] Re: php7- dropping the $ from the variable name - rfc

2008-09-19 Thread Dmitry Stogov
Greg Beaver wrote: > marius popa wrote: >> I was looking at the examples used in php.js library >> http://phpjs.org/functions/index >> and it struck me that is cleaner to read the functions and code without the >> $ names in it >> >> From what i understand $ in front of variables is an Perl lega

Re: [PHP-DEV] php7- dropping the $ from the variable name - rfc

2008-09-19 Thread Asbjørn Sloth Tønnesen
Hannes Magnusson wrote: I totally agree. Its really annoying needing to type $ all the time, not to mention how hard it is on Norwegian keyboards. Lets replace it with £ ! Like most programming languages PHP is optimized for American keyboard layout, deal with it! Fx. I especially like the p

Re: [PHP-DEV] php7- dropping the $ from the variable name - rfc

2008-09-19 Thread Andrey Hristov
Asbjørn Sloth Tønnesen wrote: > Hannes Magnusson wrote: >> I totally agree. Its really annoying needing to type $ all the time, >> not to mention how hard it is on Norwegian keyboards. Lets replace it >> with £ ! > > Like most programming languages PHP is optimized for American keyboard > layout,

Re: [PHP-DEV] php7- dropping the $ from the variable name - rfc

2008-09-19 Thread mike
On Fri, Sep 19, 2008 at 1:50 AM, Hannes Magnusson <[EMAIL PROTECTED]> wrote: > I totally agree. Its really annoying needing to type $ all the time, > not to mention how hard it is on Norwegian keyboards. Lets replace it > with £ ! can we make PHP whitespace dependent too? might as well. :) not

Re: [PHP-DEV] php7- dropping the $ from the variable name - rfc

2008-09-19 Thread Marcus Boerger
Hello Ionut, a Friend suggested to replace it with a Euro sign, so that PHP code gets worth more :-) marcus Thursday, September 18, 2008, 8:30:37 PM, you wrote: > Actually, I somehow understand what he wants, considering we'll soon > have lambdas and closures. I mean, in case of javascript

[PHP-DEV] solving the namespace conflict issues between function/static method class constant/ns constant

2008-09-19 Thread Greg Beaver
Hi all, There is a problem in the namespace implementation. This code demonstrates the issue: code.inc: main.php: call_user_func(array('foo::test', 'bar')); // the only way to call static method echo foo::test::my; // always 2 $a = new foo::test; echo $a::my; // the only way to access foo