The Future of PHP is Bright

Version 8.3 brought powerful improvements that make developers' lives easier.

1. Typed Class Constants

Now you can specify types for constants:

class MyClass {
    public const string VERSION = '1.0.0';
}

2. json_validate() function

A faster and easier way to validate JSON strings:

if (json_validate($data)) {
    // Logic here
}