Re: [PHP-DEV] Module startup/shutdown in PHP extensions

2002-07-18 Thread David Eriksson
On Thu, 18 Jul 2002, Pete Dishman wrote: [snip] > Now the problem is when I start apache (net start apache) php seems to call > the module startup function and then it calls the module shutdown function > immediately afterwards. The request startup and shutdown functions seem to > work as expec

[PHP-DEV] autoconf-2.5x users: HEADS UP

2002-07-18 Thread Sascha Schumann
If you want to use autoconf-2.5x with PHP, make sure that you run a "./cvsclean" after "cvs update". Autoconf-2.5x will not correctly rebuild configure/php_config.h in many cases. This happens under the following circumstances: - configure.in, acinclude.m4 did not change

[PHP-DEV] IMAP quota functionality

2002-07-18 Thread Dan Kalowsky
Hey there php-dev readers, Attached is a patch (based off of 4.2.1 release) for the IMAP system that needs testing. It's been brought to my attention that the quota support is sort of... well, not standards compliant. So I tried to fix that. In the process I've also hopefully added in imap_get

[PHP-DEV] PHP -f or -q?

2002-07-18 Thread Lance Lovette
I am executing PHP CGI scripts from the command line. I usually run scripts using the -f switch. However I recently started passing arguments to the scripts and notice that if the first argument after the name of the script is a hyphenated argument it will not be passed to the script. For example,

[PHP-DEV] ldap_start_tls() suggestion

2002-07-18 Thread Matt Wirges
The documentation for ldap_start_tls does not mention that you MUST be using LDAP protcol version 3. I spent a day looking through google and source trying to figure out why this was happening. I finally just changed ext/ldap/ldap.c to force LDAP protocol version 3. After happening across bu

Re: [PHP-DEV] information request

2002-07-18 Thread Rasmus Lerdorf
> Specifically I am interrested in variable interpolation and all the side > effects of double quotes (I consider addslashes/stripslashes to be a > kind of "side effect" as they are only necessary because of the "magic" > of double quotes - as I understand it now. But then that is why I am >

[PHP-DEV] information request

2002-07-18 Thread M Bruggeman
Hello, I have been using php for some time now and am interrested in exploring how php handles strings. There are some things about the way php does things I find "ugly" but I would like to know more before I go making proposals. I have read the docs and searched the php-dev l

[PHP-DEV] ldap controls

2002-07-18 Thread Matthew Gray
A while back there was some talk about adding ldap_search_ext() and ldap_create_*_control()-style functions to PHP to allow server(and maybe client someday?) controls to be sent along with a request. Is anybody working on or still thinking about doing this? Thanks Matt -- PHP Development

RE: [PHP-DEV] CVS Account Request: pgc

2002-07-18 Thread Lukas Smith
As the package maintainer I can only say that I would welcome this :-) So give the man some pear karma :-) Best regards, Lukas > -Original Message- > From: Paul Gregory Cooper [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 17, 2002 1:00 PM > To: [EMAIL PROTECTED] > Subject: [PHP-DEV]

[PHP-DEV] Re: How can I search in the dev list?

2002-07-18 Thread Braulio José Solano Rojas
Hi! Thank Martin, Rick and Derick very much. Best regards, Braulio Solano -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] How can I search in the dev list?

2002-07-18 Thread Rick Widmer
At 11:15 AM 7/18/02 -0600, Braulio José Solano Rojas wrote: >Hi! > >Is there an interface to search through the dev list? Try: http://marc.theaimsgroup.com/?l=php-dev&r=1&w=2 -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] How can I search in the dev list?

2002-07-18 Thread derick
Hi, http://marc.theaimsgroup.com/?l=php-dev&r=1&w=2 or http://news.php.net Derick On Thu, 18 Jul 2002, Braulio José Solano Rojas wrote: > Hi! > > Is there an interface to search through the dev list? > > I'm looking on how to use PHP functions into C code inside an extension. I > know th

Re: [PHP-DEV] How can I search in the dev list?

2002-07-18 Thread Martin Jansen
On Thu Jul 18, 2002 at 11:1525AM -0600, Braulio José Solano Rojas wrote: > Is there an interface to search through the dev list? http://marc.theaimsgroup.com/?l=php-dev - Martin -- Martin Jansen - [EMAIL PROTECTED] http://martinjansen.com/ -- PHP Development

[PHP-DEV] How can I search in the dev list?

2002-07-18 Thread Braulio José Solano Rojas
Hi! Is there an interface to search through the dev list? I'm looking on how to use PHP functions into C code inside an extension. I know that this question has been answered before and I would like to search and read previous postings. Thanks! Regards, Braulio Solano -- PHP Development

[PHP-DEV] Error in zend2_example.phps

2002-07-18 Thread Sander Steffann
I think zend2_example.phps has a little error in example 6: The display function is defined as: function display() { print $this->name; print "\n"; } But then it is called with: print $person->getName()->display(); Either the function should use return, or the ca

[PHP-DEV] CVS Account Request: shadow

2002-07-18 Thread Ozan Ademi
I Like to learn PHP -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Module startup/shutdown in PHP extensions

2002-07-18 Thread Pete Dishman
Hi, I've just started creating my own PHP extension and am having some trouble understanding the ZEND_MODULE_STARTUP and ZEND_MODULE_SHUTDOWN functions. my zend_module_entry is as follows: zend_module_entry tpphp_module_entry = { STANDARD_MODULE_HEADER, "tpphp", tpphp_functions, ZEND_MODULE