[PHP-DEV] PHP 4 Bug Summary Report

2006-02-13 Thread internals
PHP 4 Bug Database summary - http://bugs.php.net Num Status Summary (620 total including feature requests) ===[*Configuration Issues] 36257 Feedback php ini master values are reset between vhosts

[PHP-DEV] PHP 5 Bug Summary Report

2006-02-13 Thread internals
PHP 5 Bug Database summary - http://bugs.php.net Num Status Summary (402 total including feature requests) ===[Apache related]=== 33292 Verified apache_get_modules() crashes 35940 Open virtual() and header('Location:') crashes

[PHP-DEV] [PATCH] unicode_semantics off evaluates to true

2006-02-13 Thread Brion Vibber
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all, I've started cautiously poking PHP 6 so I can keep an eye on how the Unicode support is going and see what kind of work we'll eventually need to do to port MediaWiki for it... One thing I noticed right off is that this test doesn't do what

Re: [PHP-DEV] [PATCH] unicode_semantics off evaluates to true

2006-02-13 Thread Marcus Boerger
Hello Brion, i applied your fix which was correct. I however also added a function to check for unicode mode bool unicode_enabled() which returns true if unicode_semantics is set true. best regards marcus Monday, February 13, 2006, 10:07:58 AM, you wrote: Index: Zend/zend.c

Re: [PHP-DEV] [PATCH] unicode_semantics off evaluates to true

2006-02-13 Thread Brion Vibber
Marcus Boerger wrote: i applied your fix which was correct. I however also added a function to check for unicode mode bool unicode_enabled() which returns true if unicode_semantics is set true. Cool, thanks! -- brion vibber (brion @ pobox.com) signature.asc Description: OpenPGP digital

[PHP-DEV] CVS Account Request: gavinfo

2006-02-13 Thread Gavin Foster
Contributing to the PHP documentation project. I have volunteered to help with the PHP documentation project. I have introduced myself on the phpdoc mailing list, and read the instructions outlined in the PHP documentation manual. I would like to request a CVS account in order to contribute

[PHP-DEV] Custom Streams, fclose stream_close

2006-02-13 Thread Jared Williams
Hi, Is the PHP manual correct in that fclose() returns a bool, but a custom wrapper stream_close() is void? Would like to signal a problem if I have a problem closing a custom stream. Jared -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit:

[PHP-DEV] [PATCH] pval isn't supported in CVS HEAD

2006-02-13 Thread Steph Fox
This is probably the smallest patch in the history of PHP development, but I'm fairly certain three php_u_register_variable_*() functions won't work without it :) - Steph Index: main/php_variables.c === RCS file:

RE: [PHP-DEV] Re: cvs: php-src /ext/com_dotnet com_misc.c /ext/dom attr.c cdatasection.ccharacterdata.c comment.c document.c documentfragment.c dom_iterators.c domexception.cdomimplementation.c eleme

2006-02-13 Thread Dmitry Stogov
Ops. :) Thank you for catching the bug. I've committed fixed version. Thanks. Dmitry. -Original Message- From: Michael Wallner [mailto:[EMAIL PROTECTED] Sent: Monday, February 13, 2006 4:10 PM To: Dmitry Stogov Cc: php-cvs@lists.php.net; internals@lists.php.net Subject: [PHP-DEV]

[PHP-DEV] PHP / C++ Interaction

2006-02-13 Thread Andrew Mather
Having got a PHP/C extension .so shared library working, (courtesy this mailing list), and now also ported a C++ data server to Linux, which could also be a (C++) .so, the obvious question is: - can I talk to a C++ library from PHP, either directly or via a PHP/C extension? - aka: is there a

Re: [PHP-DEV] PHP / C++ Interaction

2006-02-13 Thread Sebastian Bergmann
Andrew Mather schrieb: is there a 'com'/.Net equivalent on Linux to permit language independent calls? http://pecl.php.net/package/ffi might be what you're looking for. -- Sebastian Bergmann http://www.sebastian-bergmann.de/ GnuPG Key: 0xB85B5D69 / 27A7 2B14 09E4 98CD

[PHP-DEV] Extensions pthreads

2006-02-13 Thread tomas
I've failed to find hints about why generated configure specifically ignores pthread* libraries, e.g.: ... case milter in c|c_r|pthread*) ;; *) LIBS=-lmilter $LIBS ;; esac ... Can extensions with pthreads be safely created or there are some hard-to-catch problems with that?

Re: [PHP-DEV] [PATCH] unicode_semantics off evaluates to true

2006-02-13 Thread Andrei Zmievski
I don't think it's right to call it unicode_enabled(). Unicode is always accessible, it's just that certain language semantics don't use it when unicode_semantics is off. So I'd call the function unicode_semantics() or unicode_default(). -Andrei On Feb 13, 2006, at 1:20 AM, Marcus Boerger

Re: [PHP-DEV] [PATCH] unicode_semantics off evaluates to true

2006-02-13 Thread Marcus Boerger
Hello Andrei, changed to unicode_semantics() now. thanks for the hint. best regards marcus Monday, February 13, 2006, 6:26:13 PM, you wrote: I don't think it's right to call it unicode_enabled(). Unicode is always accessible, it's just that certain language semantics don't use it when