PhpStorm 2016.2 Help

PHP-Specific Coding Assistance

On this page:

Converting long array syntax to short

Suppose you have an array declared in the traditional literal style:

<?php $a=[array(1,[[1 => array(1,1=>[1])],1])];
You can detect all the traditional literal style declarations in your code and convert them into short style:

  1. On the main menu, choose Code | Run Inspection by Name, or press Ctrl+Shift+Alt+I.
  2. In the pop-up frame that opens, start typing the inspection name Traditional syntax array literal. As you type, the suggestion list shrinks to show the matching inspection only. Press ?. The Specify Inspection Scope dialog box opens.
  3. In the Inspection scope area, specify which files should be inspected.
    • To have the source code of the entire project inspected, select the Whole Project option.
    • If you are using version control integration, you can choose to only inspect uncommitted files.
    • To run an inspection for the currently opened file, or the file(s)/folder(s) selected in the Project view, select the File/Module <name> option.
    • To apply inspect code in a specific scope, select the Custom scope option, then choose the desired scope from the drop-down list or click the Browse button browseButton and configure a new scope in the Scopes dialog box.
  4. To have test source files inspected too, select the Include test sources check box.
  5. Click OK to run the inspection.
  6. The Inspection Tool Window opens showing the list of files where the traditional literal style declarations have been detected:
    ps_coding_assistance_conver_array_to_short.png
    Click Convert array syntax to short. The code is updated as follows:
    <?php $a=[ [ 1, [ [ 1 => [ 1, 1=>[ 1] ] ], 1] ] ];

See Also

Last modified: 24 November 2016