[PHP-DEV] Re: [PHP-CVS] cvs: php-src /ext/standard credits.c info.c /main output.c php_output.h

2006-12-11 Thread Michael Wallner
Andrei Zmievski wrote: > So, we'll keep author names in Credits in Latin-1? Why not use UTF-8? We could, but we'd need to teach developers that ext/*/CREDITS and credits.c should be kept UTF-8; else it'll break if anyone commits non-ASCII and nobody watches. BTW, phpcredits() and phpinfo() gene

[PHP-DEV] PHP 4 Bug Summary Report

2006-12-11 Thread internals
PHP 4 Bug Database summary - http://bugs.php.net Num Status Summary (632 total including feature requests) ===[Apache2 related]== 38670 Open Whole 4.4.x branch has problem with open_basedir option nested from Apache2 38915 Open

[PHP-DEV] Unicode support for *printf()

2006-12-11 Thread Antony Dovgal
Hello all. Attached is the patch which adds Unicode support to *printf() functions stack. We (Andrei and me) made several assumptions that are worth mentioning: sprintf() and vsprintf(): - use runtime_encoding when dealing with Unicode data. printf() and vprintf(): - the result data is conver

Re: [PHP-DEV] Linking against bundled libmysql

2006-12-11 Thread Edin Kadribasic
Hi, I'm afraid you're out of luck there. We don't export symbols from the bundled libmysql so there is practically no way an extension can use that lib. Do you have to make the extension that work with the stock php 4? Or is working with an alternative build acceptable? I'm making the alternative

[PHP-DEV] [PATCH] php_java.jar extra space

2006-12-11 Thread Alexandru Burciu
Hello, I know this is not the proper place where to submit this fix but I failed to find an alternative since the extension is no longer maintained and people continue to encounter this problem. If any of you know who is responsible, please forward him this message. Thank you! [*] Summary: The

[PHP-DEV] Linking against bundled libmysql

2006-12-11 Thread Mauro N. Infantino
Hi all, I'm sorry to ask this again, but I can't find the way to compile my custom extension against the bundled libmysql in PHP4 on Windows. I'm trying to fetch a mysql extension resource ( zend_fetch_list_dtor_id("mysql link") & ZEND_FETCH_RESOURCE2 with that id). I'm using header and library fi

[PHP-DEV][RFC] Enable authorizer-feature in PDO_SQLITE

2006-12-11 Thread Mario Wolff
Any suggestions or meanings on it? Thanks, Mario Short test script: sqliteSetAuthorizer('auth'); $db->exec( "CREATE TABLE strings( a)"); $insert = $db->prepare( 'INSERT INTO strings VALUES ( ?)'); foreach ( $data as $str) { $insert->execute( array( $str)); } $insert = null; if( $delete = $

AW: [PHP-DEV] [RFC] Magic Method that handles unset($object)

2006-12-11 Thread Matthias Pigulla
> -Ursprüngliche Nachricht- > Von: Etienne Kneuss [mailto:[EMAIL PROTECTED] > Gesendet: Sonntag, 10. Dezember 2006 15:55 > Cc: internals@lists.php.net > Betreff: Re: [PHP-DEV] [RFC] Magic Method that handles unset($object) > You could use references, you would have to move some code

[PHP-DEV] PHP 5 Bug Summary Report

2006-12-11 Thread internals
PHP 5 Bug Database summary - http://bugs.php.net Num Status Summary (644 total including feature requests) ===[*Compile Issues]== 39372 Suspended Incompatibility in the PHP API. ===[*Configur

AW: [PHP-DEV] Re: [RFC] Magic Method that handles unset($object)

2006-12-11 Thread Matthias Pigulla
> -Ursprüngliche Nachricht- > Von: Ants Aasma [mailto:[EMAIL PROTECTED] > That would indeed be too slow. The standard way to handle > this, is to only check visibility periodically. That is how > Java, .NET, Python and countless others do that. Check > http://www.hpl.hp.com/personal