[PHP-DEV] Fix for grapheme bug 61860

2013-06-24 Thread Stas Malyshev
Hi! I've started working on fixing bug #61860 (where grapheme case insensitive functions mess up offsets for complex case folding) and ended up rewriting the string search functions to use proper ICU API for that - USearch. All tests seem to be passing just fine, and it is what it should be doing

[PHP-DEV] Announcing RFC 'Anonymous Catches'

2013-06-24 Thread Joost Koehoorn
Hi all, I just published an RFC that proposes to add catch-statement without needing to specify a variable, and support for fully anonymous catches. Details can be found at: https://wiki.php.net/rfc/anonymous_catch Regards, Joost Koehoorn -- PHP Internals - PHP Runtime Development Mailing

Re: [PHP-DEV] Announcing RFC 'Anonymous Catches'

2013-06-24 Thread Anthony Ferrara
Joost, First off, let me say welcome and thanks for the contribution! I have a couple of questions around the intended proposal. 1. How do you plan on handling the case where there are multiple catch blocks? try { code(); } catch { doSomething(); } catch {

[PHP-DEV] Re: Announcing RFC 'Anonymous Catches'

2013-06-24 Thread Joost Koehoorn
On 25 juni 2013 at 01:20:04, Anthony Ferrara (ircmax...@gmail.com) wrote: Joost, First off, let me say welcome and thanks for the contribution! I have a couple of questions around the intended proposal. 1. How do you plan on handling the case where there are multiple catch blocks?     try {    

Re: [PHP-DEV] Re: Announcing RFC 'Anonymous Catches'

2013-06-24 Thread Sherif Ramadan
On Mon, Jun 24, 2013 at 7:49 PM, Joost Koehoorn joost.koeho...@gmail.comwrote: On 25 juni 2013 at 01:20:04, Anthony Ferrara (ircmax...@gmail.com) wrote: Joost, First off, let me say welcome and thanks for the contribution! I have a couple of questions around the intended proposal. 1. How