IntelliJ IDEA 2018.2 Help

PHP

PHP support includes:

  • Possibility to create PHP files and classes from templates.

  • Full PHP 5.6.x syntax support.

  • Partial support for PHP 7 return type hints.

  • Syntax and error highlighting.

  • Basic on-the-fly code completion.

  • Resolution of include statements and file references, including references to PHAR archives.

    All the PHAR files from the current project and the specified include path are shown in the project tool window under the Project View/Libraries/PHAR node and available for browsing right there.

  • Class Completion

  • Intention actions and quick fixes

  • Surrounding with code constructs Ctrl+Alt+J and Ctrl+Alt+T.

  • Code inspections.

  • Jump to declaration (Ctrl+B).

  • Refactoring:

PHP development support is provided through the PHP plugin. The plugin is not bundled with IntelliJ IDEA, but it can be installed from the JetBrains plugin repository as described in Managing Plugins.

This part describes some procedures that are specific for developing PHP applications and some preliminary steps that are required to configure PHP development environment.

To develop an application using PHP

Follow these general steps:

  1. Configure the PHP development environment.

  2. Configure PHP interpreters as described in Configuring Local PHP Interpreters and Configuring Remote PHP Interpreters.

  3. Start creating a project from scratch. On the first page of the New Project wizard, choose PHP in the left-hand pane, then choose PHP Empty Project in the right-hand pane.
  4. Create and configure the required data sources (see Managing Data Sources).

  5. Populate the application using provided coding assistance.

  6. Deploy the application.
  7. Run the application. You can do it in several ways:
    • From IntelliJ IDEA using a run configuration of the type PHP Web Page to view application output in a browser.

    • From IntelliJ IDEA using a PHP Console run configuration to view the application output in the Run tool window.

    • From IntelliJ IDEA, using a built-in Web server. This approach saves your time and effort because you do not need to deploy the application sources.

The following optional steps may be helpful:

Last modified: 20 November 2018

See Also