[PHP-DEV] Re: php-src /ext/mysqli mysqli_api.c mysqli_fe.c php_mysqli.h

2003-09-25 Thread pollita
> > Modified files: > /php-src/ext/mysqli mysqli_api.c mysqli_fe.c php_mysqli.h > Log: > mysql_prepare_result -> mysqli_get_metadata > This function was renamed in libmysql (changeset 1.607 by monty) > Does this apply to all release versions? Or should config.m4 run a library check to

[PHP-DEV] Two PECL Proposals [linux_oss] and [oggvorbis]

2003-09-09 Thread pollita
At urging of those who feel pear.dev is the wrong place to propose PECL packages, I'm repeating my proposal here: --- I'd like to propose two PECL extensions: 1) linux_oss http://frankenbox.alphaweb.net/test/linux_oss-0.1.tgz De

[PHP-DEV] [Review] Route stat() family of calls via wrapper ops.

2003-08-14 Thread pollita
The streams API has, since early in its introduction had the capacity to perform stat() family calls on files under any wrapper. In theory. What's preventing wrapper->wops->url_stat from being useful is that the code in ext/standard/filestat.c has never been routed through this layer. I've put t

[PHP-DEV] pfpro issuing E_ERROR when E_WARNING would be more appropriate

2003-07-10 Thread pollita
ext/pfpro/pfpro.c has several php_error_docref() calls (particularly in pfpro_process) which issue E_ERROR (Fatal Errors/Non-recoverable) in situations where an E_WARNING would seem more appropriate (as it would allow the calling script to recover and continue. Is there a particular reason a fatal

[PHP-DEV] Re: [PHP-CVS] cvs: php-src /ext/sockets sockets.c

2003-07-07 Thread pollita
ou're sure getaddrinfo() is always available (whenever IPV6 is) ?? > > --Jani > > > On Mon, 7 Jul 2003, Sara Golemon wrote: > > >pollita Mon Jul 7 18:27:32 2003 EDT > > > > Modified files: > >/php-src/ext/sockets sockets.c > >

[PHP-DEV] Re: variable variables in global - bug?

2003-04-01 Thread pollita
> It was brought to my attention that this code is legal in PHP 4: > > function foo($param = 'test') > { > global $$param; > echo $$param; > } > > $test = 'bar'; > foo(); // prints bar > > Is this a feature or a bug? (Should we support this syntax in > phpDocumentor, or might it change in