Commit: cfc12ec9a69b9252c931a4d6a9b9a6eda465463b Author: Adam Harvey <[email protected]> Thu, 20 Jun 2013 17:03:03 -0700 Parents: 0204f1702be24712f8bea85cd8376cda91f3c56a Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=cfc12ec9a69b9252c931a4d6a9b9a6eda465463b Log: Update the 5.5.0 news entry and release page. Specifically: - Linked to the relevant manual pages for all documented new features, rather than RFCs or just having bare list items. - Linked to php.net rather than www.php.net, per the canonical URIs. - Made the punctuation consistent. - Fixed up grammar. There'll be another commit coming later tonight linking to the documentation for the couple of items that didn't have documentation prior to 5.5.0 final; that's waiting on a documentation build to finish and be pushed out. Changed paths: M archive/entries/2013-06-20-1.xml M releases/5_5_0.php Diff: diff --git a/archive/entries/2013-06-20-1.xml b/archive/entries/2013-06-20-1.xml index a0f901f..36027df 100644 --- a/archive/entries/2013-06-20-1.xml +++ b/archive/entries/2013-06-20-1.xml @@ -18,35 +18,37 @@ <b>The key features of PHP 5.5.0 include:</b> </p> <ul> - <li>Added <a href="http://www.php.net/generators">generators</a> and coroutines.</li> - <li>Added <a href="http://www.php.net/exceptions">"finally"</a> keyword. </li> - <li>Added <a href="http://www.php.net/password">simplified password hashing API</a>.</li> - <li>Added support for constant array/string dereferencing.</li> - <li>Added Class Name Resolution As Scalar Via "class" Keyword</li> - <li>Added support for using empty() on the result of function calls and other expressions</li> + <li>Added <a href="http://php.net/generators">generators</a> and coroutines.</li> + <li>Added the <a href="http://php.net/exceptions">finally</a> keyword.</li> + <li>Added a <a href="http://php.net/password">simplified password hashing API</a>.</li> + <li>Added <a href="http://php.net/migration55.new-features#migration55.new-features.const-dereferencing">support for constant array/string dereferencing</a>.</li> + <li>Added scalar class name resolution via <a href="http://php.net/oop5.basic#language.oop5.basic.class.class">::class</a>.</li> + <li>Added <a href="http://php.net/migration55.new-features#migration55.new-features.empty">support for using empty() on the result of function calls and other expressions</a>.</li> <li>Added support for non-scalar Iterator keys in foreach</li> - <li>Added support for list in foreach</li> + <li>Added <a href="http://php.net/foreach#control-structures.foreach.list">support for list() constructs in foreach statements</a>.</li> <li>Added Zend Opcache extension and enable building it by default.</li> - <li>The GD library has been upgraded to version 2.1 adding new functions and improve existing functionality.</li> - <li>A lot more improvements and fixes</li> + <li>The GD library has been upgraded to version 2.1 adding new functions and improving existing functionality.</li> + <li>A lot more improvements and fixes.</li> </ul> <p> <b>Changes that affect compatibility:</b> </p> + <ul> - <li><a href="http://www.php.net/php-logo-guid">PHP logo GUIDs</a> have been removed</li> - <li>Windows XP and 2003 support dropped</li> - <li>Case insensitivity is no longer locale specific. All case insensitive matching for function, class and constant names is now performed in a locale independent manner according to ASCII rules</li> + <li><a href="http://php.net/php_logo_guid">PHP logo GUIDs</a> have been removed.</li> + <li>Windows XP and 2003 support dropped.</li> + <li>Case insensitivity is no longer locale specific. All case insensitive matching for function, class and constant names is now performed in a locale independent manner according to ASCII rules.</li> </ul> <p> - For users upgrading from PHP 5.4 there is a migration guide available - <a href="http://php.net/migration55">here</a>, detailing the changes between PHP 5.4 and PHP 5.5.0. + For users upgrading from PHP 5.4, + <a href="http://php.net/migration55">a migration guide is available</a> + detailing the changes between 5.4 and 5.5.0. </p> <p> - For a full list of changes in PHP 5.5.0, see the <a href="/ChangeLog-5.php#5.5.0">ChangeLog</a>. + For a full list of changes in PHP 5.5.0, see the <a href="http://php.net/ChangeLog-5.php#5.5.0">ChangeLog</a>. </p> </div> </content> diff --git a/releases/5_5_0.php b/releases/5_5_0.php index fac8927..31754a5 100644 --- a/releases/5_5_0.php +++ b/releases/5_5_0.php @@ -16,36 +16,37 @@ This release includes a large number of new features and bug fixes. <b>The key features of PHP 5.5.0 include:</b> </p> <ul> - <li>Added <a href="http://www.php.net/generators">generators</a> and coroutines.</li> - <li>Added <a href="http://www.php.net/exceptions">"finally"</a> keyword. </li> - <li>Added <a href="http://www.php.net/password">simplified password hashing API</a>.</li> - <li>Added support for constant array/string dereferencing.</li> - <li>Added scalar class name resolution via <a href="http://www.php.net/oop5.basic#language.oop5.basic.class.class">::class</a>.</li> - <li>Added <a href="http://www.php.net/migration55.new-features#migration55.new-features.empty">support for using empty() on the result of function calls and other expressions</a></li> + <li>Added <a href="http://php.net/generators">generators</a> and coroutines.</li> + <li>Added the <a href="http://php.net/exceptions">finally</a> keyword.</li> + <li>Added a <a href="http://php.net/password">simplified password hashing API</a>.</li> + <li>Added <a href="http://php.net/migration55.new-features#migration55.new-features.const-dereferencing">support for constant array/string dereferencing</a>.</li> + <li>Added scalar class name resolution via <a href="http://php.net/oop5.basic#language.oop5.basic.class.class">::class</a>.</li> + <li>Added <a href="http://php.net/migration55.new-features#migration55.new-features.empty">support for using empty() on the result of function calls and other expressions</a>.</li> <li>Added support for <a href="https://wiki.php.net/rfc/foreach-non-scalar-keys">non-scalar Iterator keys in foreach</a></li> - <li>Added support for <a href="http://www.php.net/foreach#control-structures.foreach.list">list in foreach</a></li> + <li>Added <a href="http://php.net/foreach#control-structures.foreach.list">support for list() constructs in foreach statements</a>.</li> <li>Added Zend Opcache extension and enable building it by default</li> - <li>A lot more improvements and fixes</li> + <li>The GD library has been upgraded to version 2.1 adding new functions and improving existing functionality.</li> + <li>A lot more improvements and fixes.</li> </ul> <p> <b>Changes that affect compatibility:</b> </p> <ul> - <li><a href="http://www.php.net/php-logo-guid">PHP logo GUIDs</a> have been removed</li> - <li>Windows XP and 2003 support dropped</li> - <li>Case insensitivity is no longer locale specific. All case insensitive matching for function, class and constant names is now performed in a locale independent manner according to ASCII rules</li> + <li><a href="http://php.net/php_logo_guid">PHP logo GUIDs</a> have been removed.</li> + <li>Windows XP and 2003 support dropped.</li> + <li>Case insensitivity is no longer locale specific. All case insensitive matching for function, class and constant names is now performed in a locale independent manner according to ASCII rules.</li> </ul> <p> -For users upgrading from PHP 5.4 there is a migration guide available -<a href="http://php.net/migration55">here</a>, detailing the changes between -PHP 5.4 and PHP 5.5.0. +For users upgrading from PHP 5.4, +<a href="http://php.net/migration55">a migration guide is available</a> +detailing the changes between 5.4 and 5.5.0. </p> <p> For a full list of changes in PHP 5.5.0, see the - <a href="/ChangeLog-5.php#5.5.0">ChangeLog</a>. + <a href="http://php.net/ChangeLog-5.php#5.5.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
