[PHP-DEV] Zend HEAD changes

2003-03-08 Thread Peter Bowen
There appear to have been changes checked in to Zend/ after it branched for PHP 4.3. Many of these have been backported the 4.3 branch, but a few things appear to be orphaned on HEAD. The attached patch has those changes which have not yet been backported. Is there chance that some of these,

[PHP-DEV] Apache status line

2002-02-22 Thread Peter Bowen
When using php as an apache module, sending a header that starts with HTTP/ appears to only extract the numeric status code and drop the text that follows. This causes apache to use the default text. Is there a reason that the status code and text aren't passed back in the status_line element

[PHP-DEV] Building standalone executable and apache module at the same time

2002-01-09 Thread Peter Bowen
I'm working on a PHP RPM, and have run into the problem that I need both a php exectable, and an apache module in the package. My current solution is to run configure and make twice. While this works, I was hoping to find a better solution. Is there any way to get the build system to create

Re: [PHP-DEV] concatenating strings

2001-08-24 Thread Peter Bowen
On 25 Aug 2001 00:18:10 +0300, Zeev Suraski wrote: At 00:06 25-08-01, Peter Bowen wrote: I am getting a SIGSEGV with this function. I am probably just missing something. I was hoping for a function with the prototype (snip) What am I missing? Nothing I can see off hand. Where

Re: [PHP-DEV] concatenating strings

2001-08-24 Thread Peter Bowen
(tmp); ZVAL_STRINGL(tmp, s, l, 1); add_string_to_string(*data, *data, tmp); What am I missing? Thanks. Peter On 24 Aug 2001 11:02:51 +0300, Zeev Suraski wrote: Look at add_string_to_string(). At 04:14 24-08-01, Peter Bowen wrote: I am writing an extension, and trying to figure out how

Re: [PHP-DEV] concatenating strings

2001-08-24 Thread Peter Bowen
On 25 Aug 2001 00:32:59 +0300, Zeev Suraski wrote: Ok, I can improve add_string_to_string() to support empty strings. Zeev I have managed to avoid the problem, now that I know that I can't have an empty string as the first op, so it works. Once I release the extension, I am sure that

[PHP-DEV] concatenating strings

2001-08-23 Thread Peter Bowen
I am writing an extension, and trying to figure out how to append to an existing string. I have a pointer to a zval that is a string, and a pointer to another string, along with the other string's length. I have looked for a ZEND_STRCAT macro, or something similar, but don't see anything. What