[PHP-DEV] PHP 7.0.26 is available

2017-11-23 Thread Anatol Belski
Hi, The PHP development team announces the immediate availability of PHP 7.0.26. Several bugs have been fixed. All PHP 7.0 users are encouraged to upgrade to this version. For source downloads of PHP 7.0.26 please visit our downloads page: http://www.php.net/downloads.php Windows binaries can

[PHP-DEV] net_get_interfaces()

2017-11-23 Thread Sara Golemon
Planning to add net_get_interfaces() https://github.com/php/php-src/pull/2935/files for enumerating the adapters on a system and their configured addresses. Based on a combination of my own implementation and finding out krakjoe and ab@ had a stalled version already. If anyone wants an RFC I'll wr

[PHP-DEV] Changes in namespace importing

2017-11-23 Thread Khawer .
We use 'use' keyword to import other namespaces, namespace classes, namespace functions, and namespace constants. Example 1) use abc; (Import abc namespace) 2) use abc\ClassB; (Import ClassB from abc namespace) 3) use function abc\sayhello; (Import sayhello function from abc namespace) 4) use con