Anyone aware of a PhpStorm shortcut or a plugin that'll let you quickly flip back and forth between these?
$foo->bar
$foo['bar']
Anyone aware of a PhpStorm shortcut or a plugin that'll let you quickly flip back and forth between these?
$foo->bar
$foo['bar']
As far as I know it is not possible to make a shortcut for this. However, it is possible to use a regex replace on a captured group like in the following example:
\['(\w*)']->$1Source / more information: https://www.jetbrains.com/help/idea/tutorial-finding-and-replacing-text-using-regular-expressions.html#capture_groups_and_backreference