xref: /web-php/releases/8_1_0.php (revision 5655f628)
1<?php
2$_SERVER['BASE_PAGE'] = 'releases/8_1_0.php';
3include_once __DIR__ . '/../include/prepend.inc';
4site_header('PHP 8.1.0 Release Announcement');
5?>
6<h1>PHP 8.1.0 Release Announcement</h1>
7
8<p>The PHP development team announces the immediate availability of PHP 8.1.0. This release marks the latest minor release of the PHP language.</p>
9
10<p>PHP 8.1 comes with numerous improvements and new features such as:</p>
11<ul>
12  <li><a href="https://www.php.net/manual/en/language.enumerations.php">Enumerations</a></li>
13  <li><a href="https://wiki.php.net/rfc/readonly_properties_v2">Readonly properties</a></li>
14  <li><a href="https://wiki.php.net/rfc/fibers">Fibers</a></li>
15  <li><a href="https://wiki.php.net/rfc/pure-intersection-types">Pure Intersection Types</a></li>
16  <li><a href="https://www.php.net/manual/en/migration81.new-features.php#migration81.new-features.core.never-type">never</a> return type</li>
17  <li><a href="https://www.php.net/manual/en/migration81.new-features.php#migration81.new-features.core.callable-syntax">First-class Callable Syntax</a></li>
18  <li>"final" modifier for class constants</li>
19  <li>New <a href="https://www.php.net/manual/en/function.fsync.php">fsync</a> and <a href="https://www.php.net/manual/en/function.fdatasync.php">fdatasync</a> functions</li>
20  <li>New <a href="https://www.php.net/manual/en/function.array-is-list.php">array_is_list</a> function</li>
21  <li>Explicit <a href="https://www.php.net/manual/en/migration81.new-features.php#migration81.new-features.core.octal-literal-prefix">Octal numeral notation</a></li>
22  <li>And much much more...</li>
23</ul>
24
25<p>For source downloads of PHP 8.1.0 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>,
26Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>.
27The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.0">ChangeLog</a>.
28</p>
29
30<p>The <a href="http://php.net/manual/en/migration81.php">migration guide</a> is available in the PHP Manual.
31Please consult it for the detailed list of new features and backward incompatible changes.</p>
32
33<p>Many thanks to all the contributors and supporters!</p>
34
35<?php site_footer();
36