Ilia Alshanetsky schrieb:
> The PHP development team would like to announce the immediate 
> availability of PHP 5.2.11. ... All users of PHP 5.2 are encouraged to
> upgrade to this release.

So that's the next PHP release with a broken IPv6 support (after 5.2.10 and
5.3.0) and so it's not possible to update for some peoples.

| Carsten wiedm...@carsten-1 D:\
| # cd \PHP\php-5.2.11-win32
|
| Carsten wiedm...@carsten-1 D:\PHP\php-5.2.11-win32
| # php -n -i | grep "IPv6"
| IPv6 Support => enabled
|
| Carsten wiedm...@carsten-1 D:\PHP\php-5.2.11-win32
| # php -n -r "var_dump(fopen('http://[::1]', 'r'));"
|
| Warning: fopen(http://[::1]): failed to open stream: operation
|  failed in Command line code on line 1
| bool(false)


In contrast to:
| Carsten wiedm...@carsten-1 D:\PHP\php-5.2.11-win32
| # cd \PHP\php-5.2.9-2-win32
|
| Carsten wiedm...@carsten-1 D:\PHP\php-5.2.9-2-win32
| # php -n -i | grep "IPv6"
| IPv6 Support => enabled
|
| Carsten wiedm...@carsten-1 D:\PHP\php-5.2.9-2-win32
| # php -n -r "var_dump(fopen('http://[::1]', 'r'));"
| resource(7) of type (stream)

(and of course the same problem with fsockopen or stream_socket_client)

Regards,
Carsten



-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to