Skip to main content

PHP 7.2.0 Alpha 1 Released

The PHP development team announces the immediate availability of PHP 7.2.0 Alpha 1. This release marks the beginning of the first minor release in the PHP 7.x series.

           THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!
Windows sources and binaries can be found on windows.php.net/qa/.
The second alpha will be released on the 22nd of June. You can also read the full list of planned releases


                                                                                   As per declaration from PHP

Comments

Popular posts from this blog

About Node.js

As an asynchronous event driven JavaScript runtime, Node is designed to build scalable network applications. In the following "hello world" example, many connections can be handled concurrently. Upon each connection the callback is fired, but if there is no work to be done, Node will sleep. const http = require ( 'http' ) ; const hostname = '127.0.0.1' ; const port = 3000 ; const server = http . createServer ( ( req , res ) = > { res . statusCode = 200 ; res . setHeader ( 'Content-Type' , 'text/plain' ) ; res . end ( 'Hello World\n' ) ; } ) ; server . listen ( port , hostname , ( ) = > { console . log ( `Server running at http:// ${ hostname } : ${ port } /` ) ; } ) ; This is in contrast to today's more common concurrency model where OS threads are employed. Thread-based networking is relatively inefficient and very difficult to use. Furthermore, users of Node are free from worries o...

PHP 7.0.21 Released

The PHP development team announces the immediate availability of PHP 7.0.21. This is a security release. Several security bugs were fixed in this release. All PHP 7.0 users are encouraged to upgrade to this version. For source downloads of PHP 7.0.21 please visit our  downloads page , Windows source and binaries can be found on  windows.php.net/download/ . The list of changes is recorded in the  ChangeLog .

Pay Per Click by AppWorks Technologies Pvt Ltd