Home>Article>Development Tools> Big update! PhpStorm 2022.3 is released!

Big update! PhpStorm 2022.3 is released!

藏色散人
藏色散人 forward
2022-12-08 16:48:35 2005browse

English original text:https://blog.jetbrains.com/phpstorm/2022/12/phpstorm-2022-3-whats-new/

Original directory:

  • New UI✔️

  • User experience upgrade✔️

  • PHP 8.2 support❔

  • Debugging improvements❌

  • Database tool Redis support❌

  • PHP tool integration❌

  • Other updates to PHP❌

  • New settings synchronization solution❌

  • Web development❌

  • Docker❌

  • HTTP Client ❌

  • More experience upgrade❌

Note: Only about half of this article has been translated, but the rest are not key functions. Interested students can go to the original text to watch.

PhpStorm’s last major update of the year, 2022.3, is now available!

This major update brings a preview of the new UI, full PHP 8.2 support, database tool Redis support, PHP Code Vision, Quick-Fix preview, Xdebug configuration verification, ParaTest support, PHPDoc reading mode, and many other features.

Since this site does not support uploading videos, the videos in the original text will be replaced by GIF images, which may cause a decrease in experience. You can go to the original text to view the video.

New UI (preview version)

About half a year ago, Jetbrains launched a new UI in the 2022.2 EAP version. Many people may have experienced it at that time . (See:Blog: Intellij Idea new version UI application-free experience method).
Now, Jetbrains has launched an official preview version in PhpStorm for everyone to experience.

It should be noted that the new UI is turned off by default and needs to be previewed inSettings/Preferences | Appearance & Behavior | New UI Preview/Settings/Preferences | Appearance & Behavior | Enabled in New UI Preview.

PHPStorm 2022.3 发布(新UI、引用计数、修复预览)

User experience upgrade

In this update, we have also brought many additional visual improvements, the following are just The most noteworthy part of it.

Code Vision

Meta-information about PHP symbols (functions, methods, properties) will be displayed next to the PHP code:

  • A certain class, Trait ,number of uses of an interface, method or function
  • Number of interface implementations
  • The person (from Git) who made the most changes to a certain piece of code (usually the owner of the code or the person who knows that piece of code best)

PHPStorm 2022.3 发布(新UI、引用计数、修复预览)

If you don’t quite like the default position of Code Vision text, you can change it in the settings. Right-click the Code Vision text and clickConfigure/Configure. Or manually go toSettings/Preferences | Editor | Inlay Hints | Code VisionSettings/Preferences | Editor | Inlay Hints | Code Vision.

PHPStorm 2022.3 发布(新UI、引用计数、修复预览)

In addition to this, Code Vision in PhpStorm also works with JS and TypeScript files.

Quick Fix Preview

In daily use, you can useAlt Enteror click manually to automatically fix some code problems. You can now preview the code PhpStorm recommends before performing a quick fix.
When you open the quick repair menu and hover over an option, the preview interface will appear.

PhpStorm 2022.3 发布(新UI、引用计数、修复预览)

PHPDoc Reading Mode

In the process of writing code, it is important to ensure that you can easily read the code. PhpStorm 2022.3 brings a new PHPDoc look and feel, providing better-looking presentation and support for HTML format.
You can switch to the new style by clicking the gear next to PHPDoc.

PhpStorm 2022.3 发布(新UI、引用计数、修复预览)

If you don’t want to click manually every time, you can right-click the gear icon and clickRender All Doc Commentsto enable it for all PHPDoc.

PhpStorm 2022.3 发布(新UI、引用计数、修复预览)

Improved Quick Documentation

When pressingF1orCtrl Q## on any of your functions, classes or methods # When PhpStorm displays the document directly in the editor. No more jumping to the browser!
PhpStorm 2022.3 发布(新UI、引用计数、修复预览)

PhpStorm 2022.3 发布(新UI、引用计数、修复预览)

Date Time Format Preview

Sometimes, the date passed to

date()or similar functions The formats can be weird and much more complicated than Ymd, and you usually need to consult the documentation to find the specific output, and in 2022.3, whenstopping on the date format, a tooltipwill be displayed with an example date. (The following is indeed not an animated picture)
PhpStorm 2022.3 发布(新UI、引用计数、修复预览)

Not only that, you will also get detailed auto-completion tips when writing format strings.

PhpStorm 2022.3 发布(新UI、引用计数、修复预览)

PHP 8.2

PhpStorm 2022.3 brings full support for PHP 8.2, here are some of the new features to know about.

Readonly Class (Readonly Class)

PhpStorm provides the following functions for read-only classes:

    Convert a class with a read-only attribute into a read-only class Quick fix
  • Check and make sure subclasses of read-only classes are also read-only classes
  • Detect unused read-only class attributes
  • Check for prohibited statics in read-only classes Or dynamic properties

PhpStorm 2022.3 发布(新UI、引用计数、修复预览)

Deprecated dynamic properties

Accessing non-existing properties in PHP8.2 will result in a deprecation prompt. You can fix this by adding properties to the class or using the

[AllowDynamicProperties]annotation.
PhpStorm 2022.3 发布(新UI、引用计数、修复预览)

Type system improvements

PHP 8.2 introduces the

DNF (Disjunctive Normal Form) type, andnulltruefalseand other type hints.
PhpStorm 2022.3 发布(新UI、引用计数、修复预览)

That’s it here, only about half of it has been reproduced, but the rest are not key functions. Interested students can go to the original text to watch.

The above is the detailed content of Big update! PhpStorm 2022.3 is released!. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:learnku.com. If there is any infringement, please contact admin@php.cn delete