[PHP-DEV] CVS Account Request: curt

2003-08-20 Thread Curt Zirzow
help with documentation and fix bugs -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php-src /ext/standardbasic_functions.c head.c head.h

2003-08-20 Thread Brian J. France
>> Should have read the diff more closely, this message was a bit >> misleading: >> "Changed setcookie to turn on the URL encoding of the cookie data" Ya, I probably shouldn't have mentioned the setcookie change since it was so minor. > Yeah I know. I'll go whack Brian and learn

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php-src /ext/standard basic_functions.chead.c head.h

2003-08-20 Thread Rasmus Lerdorf
On Thu, 21 Aug 2003, Jani Taskinen wrote: > Should have read the diff more closely, this message was a bit > misleading: > "Changed setcookie to turn on the URL encoding of the cookie data" Yeah I know. I'll go whack Brian and learn him some English. -Rasmus -- PHP Internals - PHP

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php-src /ext/standard basic_functions.chead.c head.h

2003-08-20 Thread Jani Taskinen
Should have read the diff more closely, this message was a bit misleading: "Changed setcookie to turn on the URL encoding of the cookie data" Brian, don't forget the NEWS.. --Jani On Wed, 20 Aug 2003, Rasmus Lerdorf wrote: >The comment was slightly misleading.

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php-src /ext/standard basic_functions.chead.c head.h

2003-08-20 Thread Rasmus Lerdorf
The comment was slightly misleading. setcookie() was not changed at all. A second function (setrawcookie) which doesn't do any urlencoding of the data was simply added. The changes inside the setcookie() function was just to re-use the same code but add a flag to set whether or not urlencoding sh

[PHP-DEV] Re: [PHP-CVS] cvs: php-src /ext/standard basic_functions.c head.chead.h

2003-08-20 Thread Jani Taskinen
When/where was this discussed? Why is this necessary? setcookie() works just fine as it was.. --Jani On Wed, 20 Aug 2003, Brian France wrote: >bfranceWed Aug 20 16:51:11 2003 EDT > > Modified files: >/php-src/ext/standard head.h head.

Re: [PHP-DEV] RE : [PHP-DEV] variable_exists() patch

2003-08-20 Thread walt boring
You will get PHP warnings on line 4 that $nonexistent doesn't exist, but NO warnings on line 3 about $foo. Stop repeating obvious stuff please, everyone on the list knows this. PHP doesn't treat them the same, so how are we. PHP itself isn't consistent, and why we all asked for var

Re: [PHP-DEV] RE : [PHP-DEV] variable_exists() patch

2003-08-20 Thread walt boring
So I ask this: get_declared_classes, class_exists get_defined_functions, function_exist get_defined_constants, defined get_defined_vars, ??? classes, functions, constants are available everywhere, not just in the current function. Including a foreign library adds classes, functions and con

[PHP-DEV] Re: Support for C++ extension in UNIX builds

2003-08-20 Thread Jay Smith
fwiw, I've never had these problems with gcc's C++ compiler on Solaris when building C++ extensions, and the final linking step is usually done by gcc, not g++. When you do the linking, do you link to the stdc++ library? J Mark Spruiell wrote: > I've written a PHP5 extension in C++ that build

Re: [PHP-DEV] Compile fails on OSX 10.3

2003-08-20 Thread nucleuz
My configure that worked on OSX 10.2.5 was: ./configure \ --with-apxs \ --with-dom=/sw \ --with-xsl=/sw \ --with-simplexml \ --with-zlib-dir=/sw \ --with-mysql=/usr/local/mysql Anyone with a OSX10.3 seed that has this working? You're doing something wrong then, as it has worked for others. A co

[PHP-DEV] Re: Details

2003-08-20 Thread gnat
Please see the attached file for details. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: Re: [PHP-DEV] __autocreate() function for non-existing variables

2003-08-20 Thread Zeev Suraski
Try to use the language features that exist to implement your functionality. If you find that you cannot do it, chances are that you're trying to do something wrong, and not that the language is missing some core feature. Zeev At 12:00 20/08/2003, Vesselin Atanasov wrote: Hello. Sorry for dou

Re: Re: [PHP-DEV] __autocreate() function for non-existing variables

2003-08-20 Thread Vesselin Atanasov
Hello. Sorry for double posting but I forgot to CC it to the mailing list. Basically I need some special names to be available automatically without the need to create them via new() Some of them just like the database object will be singletons, but some need a different copy in every symbol table

Re: [PHP-DEV] sqlite and 'make -j'

2003-08-20 Thread Jon Parise
On Sat, Jul 05, 2003 at 05:39:04PM -0400, Jon Parise wrote: > Just a note that the addition of sqlite to the PHP build has broken > 'make -j' compiling: > > In file included from /home/jon/src/php5/ext/sqlite/libsqlite/src/auth.c:19: > /home/jon/src/php5/ext/sqlite/libsqlite/src/sqliteInt.h:17:

Re: [PHP-DEV] __autocreate() function for non-existing variables

2003-08-20 Thread Zeev Suraski
I don't see need for this magic. You can implement this using a simple singleton pattern, if you need it. I don't think we want to add features that will condone the use of globals, a singleton class is a much better solution for that. Zeev At 06:10 20/08/2003, Vesselin Atanasov wrote: Hello