-
Notifications
You must be signed in to change notification settings - Fork 551
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2f88bae
commit c966868
Showing
5 changed files
with
166 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
<uri>http://php.net/contact</uri> | ||
<email>[email protected]</email> | ||
</author> | ||
<xi:include href="entries/2022-12-08-1.xml"/> | ||
<xi:include href="entries/2022-12-06-1.xml"/> | ||
<xi:include href="entries/2022-11-26-1.xml"/> | ||
<xi:include href="entries/2022-11-24-2.xml"/> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<entry xmlns="http://www.w3.org/2005/Atom"> | ||
<title>PHP 8.2.0 Released!</title> | ||
<id>https://www.php.net/archive/2022.php#2022-12-08-1</id> | ||
<published>2022-12-08T06:26:27+00:00</published> | ||
<updated>2022-12-08T06:26:27+00:00</updated> | ||
<link href="https://www.php.net/index.php#2022-12-08-1" rel="alternate" type="text/html"/> | ||
<link href="https://www.php.net/archive/2022.php#2022-12-08-1" rel="via" type="text/html"/> | ||
<category term="releases" label="New PHP release"/> | ||
<category term="frontpage" label="PHP.net frontpage news"/> | ||
<content type="xhtml"> | ||
<div xmlns="http://www.w3.org/1999/xhtml"> | ||
<p>The PHP development team announces the immediate availability of PHP 8.2.0. This release marks the latest minor release of the PHP language.</p> | ||
<p>PHP 8.2 comes with numerous improvements and new features such as:</p> | ||
<ul> | ||
<li><a href="https://www.php.net/manual/en/language.oop5.basic.php#language.oop5.basic.class.readonly">Readonly classes</a></li> | ||
<li><a href="https://www.php.net/manual/en/migration82.new-features.php#migration82.new-features.core.type-system">Disjunctive Normal Form (DNF) Types</a></li> | ||
<li>New stand-alone types: <a href="https://wiki.php.net/rfc/null-false-standalone-types">null, false</a>, and <a href="https://wiki.php.net/rfc/true-type">true</a></li> | ||
<li><a href="https://www.php.net/manual/en/book.random.php">New "Random" extension</a></li> | ||
<li><a href="https://www.php.net/manual/en/migration82.new-features.php#migration82.new-features.core.constant-in-traits">Constants in traits</a></li> | ||
<li><a href="https://www.php.net/manual/en/migration82.deprecated.php#migration82.deprecated.core.dynamic-properties">Deprecate dynamic properties</a></li> | ||
<li>And much much more...</li> | ||
</ul> | ||
<p> | ||
For source downloads of PHP 8.2.0 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, | ||
Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. | ||
The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.0">ChangeLog</a>. | ||
</p> | ||
<p> | ||
The <a href="https://php.net/manual/en/migration82.php">migration guide</a> is available in the PHP Manual. | ||
Please consult it for the detailed list of new features and backward incompatible changes. | ||
</p> | ||
<p>Kudos to all the contributors and supporters!</p> | ||
</div> | ||
</content> | ||
</entry> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?php | ||
$_SERVER['BASE_PAGE'] = 'releases/8_2_0.php'; | ||
include_once __DIR__ . '/../include/prepend.inc'; | ||
site_header('PHP 8.2.0 Release Announcement'); | ||
?> | ||
<h1>PHP 8.2.0 Release Announcement</h1> | ||
|
||
<p>The PHP development team announces the immediate availability of PHP 8.2.0. This release marks the latest minor release of the PHP language.</p> | ||
|
||
<p>PHP 8.2 comes with numerous improvements and new features such as:</p> | ||
|
||
<ul> | ||
<li><a href="https://www.php.net/manual/en/language.oop5.basic.php#language.oop5.basic.class.readonly">Readonly classes</a></li> | ||
<li><a href="https://www.php.net/manual/en/migration82.new-features.php#migration82.new-features.core.type-system">Disjunctive Normal Form (DNF) Types</a></li> | ||
<li>New stand-alone types: <a href="https://wiki.php.net/rfc/null-false-standalone-types">null, false</a>, and <a href="https://wiki.php.net/rfc/true-type">true</a></li> | ||
<li><a href="https://www.php.net/manual/en/book.random.php">New "Random" extension</a></li> | ||
<li><a href="https://www.php.net/manual/en/migration82.new-features.php#migration82.new-features.core.constant-in-traits">Constants in traits</a></li> | ||
<li><a href="https://www.php.net/manual/en/migration82.deprecated.php#migration82.deprecated.core.dynamic-properties">Deprecate dynamic properties</a></li> | ||
<li>And much much more...</li> | ||
</ul> | ||
|
||
<p> | ||
For source downloads of PHP 8.2.0 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, | ||
Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. | ||
The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.0">ChangeLog</a>. | ||
</p> | ||
|
||
<p> | ||
The <a href="https://php.net/manual/en/migration82.php">migration guide</a> is available in the PHP Manual. | ||
Please consult it for the detailed list of new features and backward incompatible changes. | ||
</p> | ||
|
||
<p>Kudos to all the contributors and supporters!</p> | ||
|
||
<?php site_footer(); |