[PHP-DEV] Re: FRC: psv (Persistent Server Variable) module

2002-04-15 Thread Lance Lovette
Check out the Pwee extension module. It sounds like it might provide some of the described functionality. http://pwee.sourceforge.net/ -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] HASH_(UN)PROTECT_RECURSION bug?

2002-04-15 Thread Yasuo Ohgaki
HASH_PROTECT_RECURSION/HASH_UNPROTECT_RECURSION is defined zend_hash.c. Why HASH_UNPROTECT_RECURSION is decrementing nApplyCount unconditionally while HASH_PROTECT_RECURSION is incrementing nApplyCount conditionally? It does not make sense, since apply count became 255 from 0 when bApplyProtecti

[PHP-DEV] php installation in XP

2002-04-15 Thread maria
Dear Friends, I have installed php in windows XP professional with IIS web server by following the instructions in the manual. But when i run the php test program thru ie it displays "HTTP 500 - Internal server error Internet Explorer " I had run the 'php -i' in command prompt too. It displays t

[PHP-DEV] Msession beta 3 (RC1), Pre-Built binaries for Windows, FreeBSD, and Linux.

2002-04-15 Thread mlwmohawk
Msession is entering the final phase of development.There are many new features and enhancements over previous versions. PostgreSQL plugin, which allows save/restore. Extensive testing. Native builds for UNIX and Windows (not cygwin) http://phoenix.mohawksoft.com -- PHP Development

RE: [PHP-DEV] RE: [Zend Engine 2] ZE2 Test Windows Binaries

2002-04-15 Thread phpsurf
that'd be great ! don't you have some website somewhere ? Andi ? any idea ? -Original Message- From: Sebastian Bergmann [mailto:[EMAIL PROTECTED]] Sent: lundi 15 avril 2002 19:31 To: [EMAIL PROTECTED] Subject: Re: [PHP-DEV] RE: [Zend Engine 2] ZE2 Test Windows Binaries phpsurf wrote:

RE: [PHP-DEV] domxml "nightmare" and suggestion

2002-04-15 Thread Joseph Tate
I personally could care less about w3c-DOM compliance, as long as I can do everything to the DOM that I need to, and as of 4.2.0, I can. Yes the DOMXML stuff could be cleaned up, or even replaced, but it's functional. It looks like gdome2 is just a wrapper around libxml2 that makes it w3c-Dom co

Re: [PHP-DEV] RE: [Zend Engine 2] ZE2 Test Windows Binaries

2002-04-15 Thread Sebastian Bergmann
phpsurf wrote: > do you have any idea where to find some windows binaries to test the > ZE2 I could provide those, but where shall I put them? -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift: http://wishlis

Re: [PHP-DEV] Constant Classes

2002-04-15 Thread brad lafountain
what about.. class Beer { ... } $a = new Beer(); define('BaseBeer', $a->__clone()); $b = BaseBeer; or class Beer { ... } $a = new Beer(); define('BaseBeer', $a); $b = BaseBeer->__clone(); - Brad --- Medvitz <[EMAIL PROTECTED]> wrote: > > What I was hoping for is that when it

[PHP-DEV] RE: [Zend Engine 2] ZE2 Test Windows Binaries

2002-04-15 Thread phpsurf
hi, do you have any idea where to find some windows binaries to test the ZE2 ? thanks __ ifrance.com, l'email gratuit le plus complet de l'Internet ! vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP..

Re: [PHP-DEV] PHP 4.2.0 RC4

2002-04-15 Thread derick
Hello, can you make a backtrace of this? (bugs.php.net/bugs-generating-backtrace.php) regards, Derick On 15 Apr 2002, Balazs Nagy wrote: > I made a very clean startup with apache2 and php4.2.0RC4, and I set > extension_dir to a false './'. I got a very big segfault. Everything > else is cool.

[PHP-DEV] Re: FRC: psv (Persistent Server Variable) module

2002-04-15 Thread Medvitz
This is my thoughts on this I'd appreciate any comments. I think I could get it done in a few (2-3) weeks. Although I'm a little unsure of the thread safety issues. Medvitz Yasuo Ohgaki wrote: > Thanks for all who gave me feedback. > This is summary. If you have comment, I appreciate it

Re: [PHP-DEV] Constant Classes

2002-04-15 Thread Medvitz
What I was hoping for is that when it was defined, that the value stored would be a copy of the object at that point in time, and that whenever you set a var to that constant you would get a new copy of what was defined. I guess, then, I can set a variable to a reference of a constant too

Re: [PHP-DEV] chora.php.net down

2002-04-15 Thread Jon Parise
On Mon, Apr 15, 2002 at 02:24:13PM +0200, Roman Neuhauser wrote: > what's up? any estimates of the downtime? Both cvs.php.net and chora.php.net appear to be up now. -- Jon Parise ([EMAIL PROTECTED]) . Information Technology (2001) http://www.csh.rit.edu/~jon/ : Computer Science House Membe

[PHP-DEV] Re: call_user_func_array bug

2002-04-15 Thread Steve Meyers
Sam Liddicott wrote: > want to patch swig so that methods shadow classes can take variable > numbers of arguments.  The shadow methods need to pass on the same number > of arguments using get_args() and call_user_func_array, but can't because If I remember right, you have to use array($object, $

[PHP-DEV] Re: Questionable behaviour of variable variables

2002-04-15 Thread Steve Meyers
{""} = "bar"; $GLOBALS[$varname]->$varname = "foo"; ?> Any difference to what you did? Should PHP spit out warnings every time a developer does something that it considers stupid? Most languages fully support the user shooting themselves in the foot -- PHP is not alone in this :) -- PHP

Re: [PHP-DEV] C++ Class Wrapping

2002-04-15 Thread J Smith
Of course. Use extern "C" style bindings and such. J Ken Egervari wrote: > Can you use C++ however? I'm very interested in writing/using a standard > w3c binding for DOM XML > -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] The PHP Platform

2002-04-15 Thread Robert Cummings
Hey all, I'm just doing a general followup to say how much I love the PHP engine. I find it extremely fast for development and I love that I can integrate C extension modules when time is a huge factor. While PHP seems to be moving into the shadows here where I work I find that I love it more and

[PHP-DEV] call_user_func_array bug

2002-04-15 Thread Sam Liddicott
call_user_func_array and family support methods and functions but not class methods. I'm using swig to generate the php module for xapian (was OpenMuscat) and want to patch swig so that methods shadow classes can take variable numbers of arguments. The shadow methods need to pass on the same num

Re: [PHP-DEV] The PHP Platform

2002-04-15 Thread Andrey Hristov
> > I really have to fight within the company i work to keep PHP. Do you know what PHP >really needs? Good native XML and SOAP support.. > Without that it's very hard to convince my boss that PHP is the right tool for the >job. > > I develop for a living. And i'm not only programming in PHP. I d

[PHP-DEV] chora.php.net down

2002-04-15 Thread Roman Neuhauser
what's up? any estimates of the downtime? -- Roman Neuhauser -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] PHP 4.2.0 RC4

2002-04-15 Thread Balazs Nagy
I made a very clean startup with apache2 and php4.2.0RC4, and I set extension_dir to a false './'. I got a very big segfault. Everything else is cool. -- jul signature.asc Description: This is a digitally signed message part

[PHP-DEV] Questionable behaviour of variable variables

2002-04-15 Thread Alexander Wirtz
Through a coding error of mine, I stumbled upon a "feature" of variable variables, that is quite sickening to me. Usually php doesn't support an empty string or integers as variable-names, but these things are all possible and you won't get a single warning...shouldn't this get changed? {""} =

Re: [PHP-DEV] Constant Classes

2002-04-15 Thread Zeev Suraski
No, if you use the reference logic, than the fact that BaseBeer is defined to be a certain reference, is the meaning of it being constant. The contents of the object this reference points to may change. You just have to get used to the reference based logic. That said, it doesn't make too mu

Re: [PHP-DEV] Constant Classes

2002-04-15 Thread Stig S. Bakken
Assigning an object to a constant is, IMHO, abuse of constants. What would you expect? An immutable object? You would probably be better off making a function to clone your object or something like that. - Stig On Mon, 2002-04-15 at 02:52, medvitz wrote: > > Should it be the same object, th

Re: [PHP-DEV] ImageTTFText stupid implementation.

2002-04-15 Thread Stig S. Bakken
Please at least _try_ before asking. $antialiased_color = -$color; - Stig On Sun, 2002-04-14 at 16:25, Vergoz Michael (SYSDOOR) wrote: > heh i'm okay, but how to change the font color right now ??? > > Cordialement, > Vergoz Michael > http://www.sysdoor.com > [EMAIL PROTECTED] > - Origina

Re: [PHP-DEV] Re: cvs: php4 / run-tests.php

2002-04-15 Thread Stig S. Bakken
On Sun, 2002-04-14 at 22:30, Marcus Börger wrote: [snip] > > Interesting is that i can call the test manually and when i add -C it works. > > [marcus@zaphod php4]$ /usr/src/php4/php -q ext/exif/tests/004.php > /usr/src/php4/ext/exif/tests/004.php(8) : Warning - Unable to open > './ext/exif/tes

RE: [PHP-DEV] The PHP Platform

2002-04-15 Thread Rose, Billy
Have you buried your head into the source code to see how it works? If not, I suggest looking at what they have done before making the statement over performance. There is nothing I have seen that suggests they are implementing slowness (on purpose, by mistake, or for lack of time). These guys _kn