Commit: d60ae0fdf74b2efa366275974a20f4e85fcfbd5c Author: kovacs.ferenc <[email protected]> Thu, 28 Aug 2014 12:24:21 +0200 Parents: ac3f56cdbee91f6fb3d1cf505a6e40c6c5aa4ed6 Branches: PHP-5.6.0
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=d60ae0fdf74b2efa366275974a20f4e85fcfbd5c Log: add missing invidual release archive file for PHP-5.6.0 Changed paths: A releases/5_6_0.php Diff: diff --git a/releases/5_6_0.php b/releases/5_6_0.php new file mode 100644 index 0000000..1679f4d --- /dev/null +++ b/releases/5_6_0.php @@ -0,0 +1,49 @@ +<?php +// $Id$ +$_SERVER['BASE_PAGE'] = 'releases/5_6_0.php'; +include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc'; +site_header("PHP 5.6.0 Release Announcement"); +?> + +<h1>PHP 5.6.0 Release Announcement</h1> + +<p>The PHP Development Team announces the immediate availability of PHP 5.6.0. +This new version release comes with new features, some backward incompatible changes and many improvements. +</p> + +<p><b>The main features of PHP 5.6.0 include:</b></p> +<ul> + <li><a href="http://php.net/migration56.new-features.const-scalar-exprs">Constant scalar expressionss</a>.</li> + <li><a href="http://php.net/functions.arguments.php#functions.variable-arg-list">Variadic functions</a>, and argument unpacking syntax</li> + <li><a href="http://php.net/language.operators.arithmetic">Exponentiation operator</a>.</li> + <li><a href="http://php.net/migration56.new-features.use">Function and constants imports</a> with the <a href="http://php.net/language.namespaces.importing.php">use keyword</a>.</li> + <li><a href="http://phpdbg.com/docs">phpdbg</a> as an interactive integrated debugger SAPI.</li> + <li><a href="http://php.net/wrappers.php.php#wrappers.php.input">php://input</a> attribute changes as well as POST data parsing mechanism.</li> + <li><a href="http://php.net/book.gmp">GMP</a> objects now support operator overloading.</li> + <li>Files larger than 2 gigabytes in size are now accepted.</li> +</ul> + +<p>For a full list of new features, you may read <a href="http://php.net/migration56.new-features"> our migration guide new features</a> chapter.</p> + +<p> +<b>PHP 5.6.0 also introduces changes that affect compatibility:</b> +</p> + +<ul> + <li>Array keys won't be overwritten when defining an array as a property of a class via an array literal.</li> + <li><a href="http://php.net/function.json-decode">json_decode()</a> is more strict in JSON syntax parsing.</li> + <li>Stream wrappers now verify peer certificates and host names by default when using SSL/TLS.</li> + <li><a href="http://php.net/book.gmp">GMP</a> resources are now objects.</li> + <li><a href="http://php.net/book.mcrypt">Mcrypt</a> functions now require valid keys and IVs.</li> +</ul> + +<p> + For users upgrading from PHP 5.5, <a href="http://php.net/migration56">a full migration guide</a> is available, detailing the changes between 5.5 and 5.6.0. +</p> + +<p>For source downloads of PHP 5.6.0, please visit our <a href="http://www.php.net/downloads.php">downloads page</a>. +Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. +The full list of changes is available in the <a href="http://www.php.net/ChangeLog-5.php#5.6.0">ChangeLog</a>. +</p> + +<?php site_footer(); ?> -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
