RE: [PHP-WIN] Re: Performance tuning #2

2002-01-03 Thread Peter Illes
var-parameter version... Thanks again, Peter -Original Message- From: Alek Andreev [mailto:[EMAIL PROTECTED]] Sent: Monday, December 31, 2001 2:35 PM To: Peter Illes Subject: Re: [PHP-WIN] Re: Performance tuning #2 There are two ways to do that: Method 1: Add each new part of the result

RE: [PHP-WIN] Re: Performance tuning #2

2002-01-03 Thread Peter Illes
Alain, thanks for the link. Peter -Original Message- From: alain samoun [mailto:[EMAIL PROTECTED]] Sent: Monday, December 31, 2001 6:56 PM To: Peter Illes; [EMAIL PROTECTED] Subject: RE: [PHP-WIN] Re: Performance tuning #2 No faq, but an archive at: http://marc.theaimsgroup.com/?l=php

RE: [PHP-WIN] Re: Performance tuning #2

2001-12-31 Thread alain samoun
No faq, but an archive at: http://marc.theaimsgroup.com/?l=php-windows&r=1&w=2 A+ Alain -Original Message- From: Peter Illes [mailto:[EMAIL PROTECTED]] Sent: Monday, December 31, 2001 8:42 AM To: [EMAIL PROTECTED] Subject: [PHP-WIN] Re: Performance tuning #2 Thanks, Manuel, t

[PHP-WIN] Re: Performance tuning #2

2001-12-31 Thread Peter Illes
Thanks, Manuel, those are both very good ideas that we will make use of. My original problem is simpler than that, though: I'd like to pre-allocate a buffer for the string. Is this possible in PHP? This is possible in both C/C++ and Delphi (with SetLength() in Delphi). The reason for this to hav

[PHP-WIN] Re: Performance tuning #2

2001-12-30 Thread Manuel Lemos
Hello, Peter Illes wrote: > > Some more details: > > We are implementing a Web Services server (essentially SOAP server) in PHP > and one of the calls has to return a data packet as XML so we want to > accumulate the response in a string variable and then return it (optionally > logginig it for

[PHP-WIN] Re: Performance tuning #2

2001-12-30 Thread Peter Illes
Some more details: We are implementing a Web Services server (essentially SOAP server) in PHP and one of the calls has to return a data packet as XML so we want to accumulate the response in a string variable and then return it (optionally logginig it for security reasons). We would like to avoi