Re: [PHP-DEV] fputcsv()

2004-09-03 Thread Marcus Boerger
Hello David, it is obviously fgetcsv(), see last comment on #29719 [Opn]: fgetcsv - double quotes issue marcus Thursday, September 2, 2004, 10:26:18 PM, you wrote: > Marcus Boerger wrote: >> Hello David, >> >> i looked up the fputcsv() magic in the file manually and agree that this >> is

[PHP-DEV] Re: [PHP-DOC] Grouped functions working in livedocs

2004-09-03 Thread Derick Rethans
On Thu, 2 Sep 2004, Gabor Hojtsy wrote: > Now it would be nice to discuss two things: > >- whether these categories are fine >- whether the reference sections are categorized in the right > places or not > > After we finalize the categorization, we can put the category names to > enti

Re: [PHP-DEV] PHP 4.3.9RC2 and pdflib

2004-09-03 Thread Derick Rethans
On Thu, 2 Sep 2004, Jacques Marneweck wrote: > Is there any particular reason why pdflib 6 does not compile with PHP 4.3.9RC2. > > ext/pdf/pdf.lo: In function `zif_pdf_open': > /usr/local/src/php-4.3.9RC2/ext/pdf/pdf.c:472: undefined reference to > `PDF_open_fp' > *** Error code 1 > > I would assu

[PHP-DEV] curl_multi_info_read

2004-09-03 Thread Wico de Leeuw
Hiya, Could somebody please take a look at it, it's has been "not implented" for more then a year now, and i really could use it. (i tried to modify/fix it myself, but i don't know much c and only got degmentation faults :) Without this function you can get multiple urls at the same time but you

[PHP-DEV] OpenSSL

2004-09-03 Thread Ron Korving
I have nothing to gain from this directly myself, but I did wonder about this: Why is the OpenSSL library used still version 0.9.6c from December 2001 while there have been many more releases since then, with the latest release being from March 2004? Maybe it's time to consider an upgrade? Ron -

Re: [PHP-DEV] OpenSSL

2004-09-03 Thread George Schlossnagle
PHP use the OpenSSL library on your system. Perhaps it's time for you to consider an upgrade. George On Sep 3, 2004, at 9:54 AM, Ron Korving wrote: I have nothing to gain from this directly myself, but I did wonder about this: Why is the OpenSSL library used still version 0.9.6c from December

[PHP-DEV] Writeing OO exteions for PHP 4.3

2004-09-03 Thread Jan Gerritsen
Hello, I want to write an OO extension in C++ for my PHP 4.3.8 under linux. I have already written some extensions in C for my own purposes, which introduce new functions to PHP. Studying the sources of ext/standard/dir.c, ext/ming/ming.c and the tutorial from J Smith (http://bugs.tutorbuddy.com/ph

Re: [PHP-DEV] Writeing OO exteions for PHP 4.3

2004-09-03 Thread John Coggeshall
If I understand you correctly you can put this pointer inside of a resource container and return the resource container to user space as the return value from url_init(). Then, from url_set_string() you accept the resource as a parameter and extract the pointer to your CPP instance of whatever clas

Re: [PHP-DEV] OpenSSL

2004-09-03 Thread Zeev Suraski
Maybe he meant the Windows build..? Zeev At 17:27 03/09/2004, George Schlossnagle wrote: PHP use the OpenSSL library on your system. Perhaps it's time for you to consider an upgrade. George On Sep 3, 2004, at 9:54 AM, Ron Korving wrote: I have nothing to gain from this directly myself, but I did

Re: [PHP-DEV] Re: Make $472

2004-09-03 Thread Wez Furlong
Please don't reply-all to spam sent to the list; you're effectively creating a backdoor around spam filters. I didn't get the original spam, but I did get your "clever" response; neither of these are relevant on [EMAIL PROTECTED] On Wed, 1 Sep 2004 08:51:29 +0200, Ron Korving <[EMAIL PROTECTED]>

[PHP-DEV] Win32 install scripts

2004-09-03 Thread Jack Thornton
I'm working on the installer for our web system, which requires PHP running under IIS. It would save a great deal of time if I could inspect your Wise install scripts and/or install DLL code to see how I have to set up IIS. I downloaded the CVS tree and could not find these scripts. Am I blind, or

Re: [PHP-DEV] Writeing OO exteions for PHP 4.3

2004-09-03 Thread Jan Gerritsen
Hi, If I understand you correctly you can put this pointer inside of a resource container and return the resource container to user space as the return value from url_init(). Then, from url_set_string() you accept the resource as a parameter and extract the pointer to your CPP instance of whatever

Re: [PHP-DEV] Win32 install scripts

2004-09-03 Thread Wez Furlong
Phil Driscoll (CC'd) is the man behind the installer. --Wez. On Thu, 2 Sep 2004 13:59:19 -0700, Jack Thornton <[EMAIL PROTECTED]> wrote: > I'm working on the installer for our web system, which requires PHP > running under IIS. It would save a great deal of time if I could inspect > your Wise ins

Re: [PHP-DEV] Writeing OO exteions for PHP 4.3

2004-09-03 Thread George Schlossnagle
On Sep 3, 2004, at 2:33 PM, Jan Gerritsen wrote: Hi, If I understand you correctly you can put this pointer inside of a resource container and return the resource container to user space as the return value from url_init(). Then, from url_set_string() you accept the resource as a parameter and ext

Re: [PHP-DEV] Directoryiterator / preg_match behavior

2004-09-03 Thread Andi Gutmans
It probably makes sense to add SEPARATE_ZVAL_IF_NOT_REF() to that code. This would provide the same behavior as for example for long's. Can you please check out the following patch? Index: zend_API.c === RCS file: /repository/ZendEng

Re: [PHP-DEV] Directoryiterator / preg_match behavior

2004-09-03 Thread Curt Zirzow
* Thus wrote Andi Gutmans: > It probably makes sense to add SEPARATE_ZVAL_IF_NOT_REF() to that code. > This would provide the same behavior as for example for long's. > Can you please check out the following patch? Nice! That fixed the $file holding the value between iterations Test 1: ($file no

[PHP-DEV] notes on hashes in globals

2004-09-03 Thread Alan Knowles
If anyone has time to comment on this - it's a summary of how to store an hash of user defined structs in extension globals. http://www.akbkhome.com/wiki.php/DBDO/hashes.html I've still got to test it, but If anyone wants to comment on any ineffeciencies.. it would be useful.. Regards Alan -- P

[PHP-DEV] Re: notes on hashes in globals

2004-09-03 Thread l0t3k
Alan, thats for writing this. i'm currently using a homegrown method for storing frequently accessed statically created objects, but i think i'll try your suggestion. no comments on efficiency, since my concern is mainly reducing memory allocations and constructor call overhead, and this shoul