Re: [PHP-DEV] New flame

2008-07-05 Thread Rui Hirokawa
Hello Marcus, > > > The script encoding is specified by a couple of different ways. > > >(1) mbstinrg.script_encoding in php.ini > >(2) declare(encopding="Shift_JIS") on each PHP script > > -> multibyte_encoding_001.phpt > >(3) BOM in Unicode script > > -> multibyte_enco

Re: [PHP-DEV] win32 snaps back

2008-07-05 Thread Pierre Joye
hi, On Sat, Jul 5, 2008 at 9:34 PM, Johannes Schlüter <[EMAIL PROTECTED]> wrote: > Hi, > > On Sat, 2008-07-05 at 18:33 +0200, Pierre Joye wrote: >> The win32 snaps were broken since the 24th of June. Except the 5.3 >> apache2filter and the 5.3 installer snapshots, everything is back >> online. > >

Re: [PHP-DEV] win32 snaps back

2008-07-05 Thread Johannes Schlüter
Hi, On Sat, 2008-07-05 at 18:33 +0200, Pierre Joye wrote: > The win32 snaps were broken since the 24th of June. Except the 5.3 > apache2filter and the 5.3 installer snapshots, everything is back > online. Thanks for that, while working on the Windows stuff: Do you think you can find a good way to

Re: [PHP-DEV] towards a 5.3 release

2008-07-05 Thread Marcus Boerger
Hello Hannes, Wednesday, July 2, 2008, 10:41:10 PM, you wrote: > On Wed, Jul 2, 2008 at 22:00, Lukas Kahwe Smith <[EMAIL PROTECTED]> wrote: >> Summary: >> Everybody review [1] and make sure all items you care about are on the list >> and your name only appears next to stuff you are actually able

Re: [PHP-DEV] towards a 5.3 release

2008-07-05 Thread Marcus Boerger
Hello Lukas, Wednesday, July 2, 2008, 10:00:22 PM, you wrote: > Aloha, > Since Johannes has been stumped (and therefore not as visible as he > would have hoped) with work and 5.3 CVS is already filled brim with > awesome new features, I have been approached by several people > wondering ho

Re: [PHP-DEV] [RFC] Closures: updated proposal and patch

2008-07-05 Thread Marcus Boerger
Hello Christian, cool progress and nice syntax. The only thing I was wondering of is whether the following would work: function replace_spaces ($text) { static $replacement = function ($matches) { return str_replace ($matches[1], ' ', ' ').' '; }; return preg_replace_ca

Re: [PHP-DEV] [PATCH] [RFC] Closures and lambda functions in PHP

2008-07-05 Thread Marcus Boerger
Hello Stanislav, Monday, June 30, 2008, 12:20:15 AM, you wrote: > Hi! >> * Class::__invoke() to allow functors[1]. The class "Closure" in >> your proposal should also implement that method to make >> method_exists() and ext/reflection behave. >> * Change the behaviour

Re: [PHP-DEV] New flame

2008-07-05 Thread Marcus Boerger
Hello Rui, Sunday, June 29, 2008, 3:36:58 PM, you wrote: > Removing multibyte encoding support from PHP 5.3 will cause > the severe incompatibility problem with the older PHP 5.x. > As Stefan noted, Shift_JIS character encoding which is widely used in > Japan is not flex safe encoding because

[PHP-DEV] Re: towards a 5.3 release

2008-07-05 Thread Greg Beaver
Lukas Kahwe Smith wrote: Aloha, Since Johannes has been stumped (and therefore not as visible as he would have hoped) with work and 5.3 CVS is already filled brim with awesome new features, I have been approached by several people wondering how we can speed up the process. I have always said

[PHP-DEV] win32 snaps back

2008-07-05 Thread Pierre Joye
Hi, The win32 snaps were broken since the 24th of June. Except the 5.3 apache2filter and the 5.3 installer snapshots, everything is back online. The apache2filter is broken (all platforms) on 5.3 right now and will be fixed soon (Thanks to Scott). By the way, it would be nice if every PECL maint

Re: [PHP-DEV] towards a 5.3 release

2008-07-05 Thread Greg Beaver
Dmitry Stogov wrote: Lukas Kahwe Smith wrote: 2) phar extension I guess we are pretty solid here? We'll need to review the phar before release. It definitely must be in 5.3, but it should be improved, and this improvements may require some changes in ZE. For now packed phpMyAdmin is 4

[PHP-DEV] Re: [ZEND-ENGINE-CVS] cvs: ZendEngine2(PHP_5_3) / Zend.m4 zend.c zend_compile.c zend_globals.h zend_highlight.c zend_language_scanner.c zend_language_scanner.h zend_language_scanner.l zend_l

2008-07-05 Thread Derick Rethans
On Sat, 5 Jul 2008, Rui Hirokawa wrote: > Thank you for bug report. > I found a very sinple scipt (t1.php, shown below) > causes segmentation error or stack error > using PHP 5.3 compiled with --enable-zend-multibyte. > It works fine with PHP 5.2. My script was malfunctioning with PHP 5.2 as well

[PHP-DEV] Re: [ZEND-ENGINE-CVS] cvs: ZendEngine2(PHP_5_3) / Zend.m4 zend.c zend_compile.c zend_globals.h zend_highlight.c zend_language_scanner.c zend_language_scanner.h zend_language_scanner.l zend_l

2008-07-05 Thread Rui Hirokawa
Derick, Thank you for bug report. I found a very sinple scipt (t1.php, shown below) causes segmentation error or stack error using PHP 5.3 compiled with --enable-zend-multibyte. It works fine with PHP 5.2. php.ini --- mbstring.internal_encoding = UTF-8 mbstring.script_encoding = SJIS -- t1.php