PhpStorm 2023.3 Help

Profiling with Xdebug

Besides interactive debugging, the IDE's integration with Xdebug also supports profiling. PhpStorm provides visual representation of the profiling snapshots generated by Xdebug to help you examine how your PHP application uses execution time and memory.

Set up profiling with Xdebug

Set up Xdebug

  1. Download and install the Xdebug tool.

  2. Integrate Xdebug with the PHP engine.

  3. Integrate Xdebug with PhpStorm.

Configure Xdebug profiler in php.ini

  1. Open the active php.ini file in the editor:

    1. In the Settings dialog (Ctrl+Alt+S) , click PHP.

    2. On the PHP page that opens, click the Browse button next to the CLI Interpreter field.

    3. In the CLI Interpreters dialog that opens, the Configuration file read-only field shows the path to the active php.ini file. Click Open in Editor.

  2. Enable the Xdebug profiler mode by one of the following ways:

    • To permanently enable the profiler, set the xdebug.mode (for Xdebug 3) or xdebug.profiler_enable (for Xdebug 2) setting to profile:

      xdebug.mode = profile
      xdebug.profiler_enable = 1
    • To enable triggering the profiler from the browser by using the XDEBUG_PROFILE cookie or a GET/POST parameter, set the following settings depending on the Xdebug version used:

      xdebug.mode = profile xdebug.start_with_request = trigger
      xdebug.profiler_enable = 0 xdebug.profiler_enable_trigger = 1
  3. Specify the location for storing profiling snapshots:

    1. Add the xdebug.output_dir (Xdebug 3) or xdebug.profiler_output_dir (Xdebug 2) setting and specify the path to the directory as its value.

      xdebug.output_dir = <path to output folder>
      xdebug.profiler_output_dir = <path to output folder>
    2. Add the xdebug.profiler_output_name setting and specify the name of the file to store snapshots in as its value.

      The default value is cachegrind.out.%p, where %p is the name format specifier. Use the default value or define a custom file format according to the supported format specifiers. Note that the name should always be cachegrind.out.

      xdebug.profiler_output_name = cachegrind.out.%p

Configure toggling the profiler from the browser

To specify the XDEBUG_PROFILE cookie or a GET/POST parameter, do one of the following:

  • Specify the values manually.

  • Generate the bookmarklets to toggle the debugger through. These bookmarklets will appear on the toolbar of your browser. They provide control over the debugger cookie, through them you will activate and deactivate the debugger.

    1. Enable the Bookmarks toolbar in your browser by doing one of the following depending on the browser type:

      • In Firefox, choose View | Toolbar | Bookmarks Toolbar.

      • In Chrome, choose Bookmarks | Show bookmarks bar.

    2. Open the Xdebug & Zend Debugger bookmarklets generator page, check the debugging engine settings and click Generate. The bookmarks for listed debugging-related actions are generated.

    3. Drag the generated links to the bookmark toolbar in your browser.

Initiate an Xdebug debugging session to collect profiling data

Do one of the following:

  • To start debugging an entire application, create debug configuration of the type PHP Web Page, and launch debugging by clicking the Debug button.

    For more information, refer to Debug with a PHP web page debug configuration.

  • To debug a specific PHP HTTP request, define a debug configuration of the type PHP HTTP Request, and launch debugging by clicking the Debug button.

    For more information, refer to Debug a PHP HTTP request.

  • To initiate a zero-configuration debugging session:

    1. Toggle the Start Listen PHP Debug Connections button start listening php debug connections ( in the classic UI) on the PhpStorm toolbar or status bar so that it changes to stop listening php debug connections. After that PhpStorm starts listening to the port of the debugging engine used in the current project. Debugging ports are set at the PhpStorm level on the PHP | Debug page of the Settings dialog (Ctrl+Alt+S) .

    2. Open the starting page of your application in the browser, choose the Start debugger bookmark to activate the debugging engine from the browser, re-load the current page (the starting page of the application), and then return to PhpStorm.

Profile PHP CLI scripts

You can generate profiler snapshots for PHP CLI scripts in PhpStorm without setting Xdebug to the profile mode in php.ini and initiating an Xdebug debugging session.

To generate a profiler snapshot for a PHP script:

  1. Set up Xdebug in PhpStorm.

  2. Create a custom run configuration for the PHP script file and specify the following Interpreter options in it:

    -dxdebug.mode=profile -dxdebug.start_with_request=yes -dxdebug.output_dir=/Users/{username}/{path-to-project-directory} -dxdebug.profiler_output_name=cachegrind.out.%p
    Profile a PHP CLI script
  3. Launch the created run configuration by clicking Run from the Run/Debug Configurations dialog or using your preferred way of running application configurations.

    Every time you launch such run configuration, PhpStorm generates a cachegrind.out.%p profiler snapshot and stores it in the specified output folder.

Analyze Xdebug profiling data

Retrieve the data accumulated by the profiler

  1. In the main menu, go to Tools | Analyze Xdebug Profiler Snapshot.

  2. In the Select Xdebug profiler snapshot dialog that opens, choose the folder and the file where the profiling data is stored.

    PhpStorm presents the collected profiling data in a separate editor tab with the name of the selected profiler output file.

    Open profiler snapshot in IDE

    You can select and open several snapshots at a time. In this case, PhpStorm aggregates the profiling data from all the selected snapshots and presents the averaged result in a single tab.

Examine the profiling data

Switch between the tabs to analyze the profiling data. To quickly find a specific function in a tab, use speed search.

  • Execution Statistics: use this tab to examine the summary information about execution metrics of every called function.

  • Call Tree: use this tab to explore the execution paths of all called functions.

  • Callees: use this tab to explore the execution paths of a specific function selected in the Call Tree tab.

  • Callers: use this tab to explore all the paths that can result in calling a specific function selected in the Call Tree tab.

Metric name

Description

Time

The amount of time (in percent) spent in the selected function and all the functions that are recalled from this function.

Own time

The amount of time (in percent) spent in the selected function, discounting the amount of time spent in the functions that are recalled from this function.

Memory (B)

The amount of memory (in bytes) consumed by the selected function and all the functions that are recalled from this function.

Own memory (B)

The amount of memory (in bytes) consumed by the selected function, discounting the amount of memory consumed by the functions that are recalled from this function.

Calls

The number of times the selected function was called.

Last modified: 04 March 2024