Re: [PHP-DEV] PHP Release Process Sucks

2006-05-19 Thread Brion Vibber
rays, so we encountered no problems with 5.1.3 release candidates. -- brion vibber (brion @ pobox.com / brion @ wikimedia.org) signature.asc Description: OpenPGP digital signature

Re: [PHP-DEV] Passing functions to function by reference

2006-04-27 Thread Brion Vibber
essential difficulty, as if it were really *memory corruption* I can't imagine it being turned back on in 5.1. :) -- brion vibber (brion @ pobox.com / brion @ wikimedia.org) signature.asc Description: OpenPGP digital signature

Re: [PHP-DEV] compiling a 64-bit PHP on a mac G5

2006-04-19 Thread Brion Vibber
es. (Install a 32-bit package in another directory, if they're not shipping them with the 64-bit server.) Communication with the server happens over a socket, so you don't have to compile as the same arch as the server. -- brion vibber (brion @ pobox.com) signature.asc Description: OpenPGP digital signature

Re: [PHP-DEV] Unicode string literals and casting

2006-02-20 Thread Brion Vibber
nything that needs to get used for referring to identifiers, though, needs to be able to operate consistently in some fashion... * array_map("some_function_name", $data); * $GLOBALS["myConfigVar"] = $newval; etc These probably need to either 'just work' when passed the other

[PHP-DEV] Unicode string literals and casting

2006-02-14 Thread Brion Vibber
uot;) to say "I'm going to use Unicode string literals in this file, whatever unicode_semantics may be." Would there be any interest in supporting a mode like this? A Python-style modifier like u"blah" could go along with the b"blah" binary string literal as w

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 D

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

2006-02-13 Thread Brion Vibber
ached is a one-line patch which sets it to "0" and uses the macro STD_ZEND_INI_BOOLEAN, to match with other config settings I saw in there. This keeps it off by default but makes the ini_get evaluate to the expected false in a boolean test. - -- brion vibber (brion @ pobox.com)