Paul Krill
Editor at Large

PHP 8.3 brings typing of class constants

news
Nov 27, 20232 mins

Major update to PHP adds support for declaring class, interface, trait, and enum constant types. Readonly properties and randomness also get attention.

Plastic, magnetic letters in compartmented boxes.
Credit: David Lofink

PHP 8.3, a major update to the popular server-side web scripting language, offers features such as explicit typing of class constants, deep cloning of readonly properties, and additions to randomness functionality.

Released November 23, PHP 8.3 can be accessed from php.net.

With typed class constants, PHP 8.3 gains support for declaring class, interface, trait, and enum constant types. Class constant type declarations support all type declarations supported by PHP, with the exception of void, callable, and never.  The void and callable types are not supported due to issues discussed in the typed properties v2 RFC. Similarly, never is not applicable in the context of constants.

To enable deep cloning of readonly properties, PHP 8.3 allows readonly properties to be modified once within the magic __clone method. Plus, readonly classes now can be reinitialized during cloning. PHP 8.3 also lets non-readonly classes extend readonly classes.

Other new features and improvements in PHP 8.3:

  • A new [#Override] attribute expresses intent in code. If this attribute is added to a method, the engine shall validate that a method with the same name exists in a parent class or any of the implemented interfaces. If no such method exists, a compile time error shall be emitted.</li> <li>The command line linter now accepts variadic input for file names to lint.</li> <li>The <a href="https://www.php.net/releases/8.2/en.php#random_extension" rel="nofollow">Random Extension</a> added in PHP 8.2 adds a new method that generates random strings consisting of specific bytes only. This method allows developers to easily generate random identifiers, such as domain names, and numeric strings of arbitrary length.</li> <li>A a new function, <code>json_validate(), indicates whether a string contains valid JSON.
  • Anonymous classes now can be readonly.

PHP 8.2 arrived last December, introducing readonly classes.

Paul Krill

Paul Krill is editor at large at InfoWorld. Paul has been covering computer technology as a news and feature reporter for more than 35 years, including 30 years at InfoWorld. He has specialized in coverage of software development tools and technologies since the 1990s, and he continues to lead InfoWorld’s news coverage of software development platforms including Java and .NET and programming languages including JavaScript, TypeScript, PHP, Python, Ruby, Rust, and Go. Long trusted as a reporter who prioritizes accuracy, integrity, and the best interests of readers, Paul is sought out by technology companies and industry organizations who want to reach InfoWorld’s audience of software developers and other information technology professionals. Paul has won a “Best Technology News Coverage” award from IDG.

More from this author