>
> 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
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
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
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
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
> >
> 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