Friday, January 19, 2024

PHPStorm structural search

To find code of the form
if (isset(...)) {
    ...
} else {
    ...
}
you can use PHPStorm structural search (Edit - Find - Search Structurally):
if (isset($a$)) {
$b$
} else {
$c$
}

No comments:

Post a Comment