Re: [PHP-DEV] Method call improvements

2009-05-13 Thread Paul Biggar
Hi Stas, On Tue, May 12, 2009 at 7:24 PM, Stanislav Malyshev s...@zend.com wrote: Hi! Apologies, I'm not familiar with run-time inheritence in PHP. My understanding was that when a classes source code is compiled, its parent classes must be known. When is this not the case? Must it be known

Re: [PHP-DEV] The constant use of isset()

2009-05-13 Thread Ólafur Waage
2009/5/12 Ionut Gabriel Stan ionut.g.s...@gmail.com 2009/5/13 Ólafur Waage olaf...@gmail.com: 2009/5/12 Brian Moon br...@moonspot.net $foo = filter_input(INPUT_GET, foo, FILTER_UNSAFE_RAW); That would have a value if set or null if not set. It also allows you to validate it using

Re: [PHP-DEV] PHP 5.3.0RC3

2009-05-13 Thread Lukas Kahwe Smith
On 12.05.2009, at 20:12, Stanislav Malyshev wrote: Hi! @Stas/Dmitry: ? As I said, I'm ok with committing this, provided all the tests are fixed, etc. I do not know what the changes do. AFAIK they revert things to be more BC compliant with 5.2 and if that is the case, then there is no

[PHP-DEV] [PATCH] Bug #48256 readline crash

2009-05-13 Thread Tim Starling
The readline extension links both libreadline and libhistory. This is unnecessary, and inspection of the readline example programs since version 2.0 implies that it has always been unnecessary. Both libraries include history.o, so linking to both gives you two copies of that module. The bug