chrome-xdebug-client icon indicating copy to clipboard operation
chrome-xdebug-client copied to clipboard

Xdebug Chrome App/Extension

Xdebug Chrome App

Features:

  • stepping through code,
  • setting breakpoints,
  • viewing stack backtrace,
  • evaluating expressions.

How to get started:

  1. Install the app: Google Webstore or go to chrome://extensions/ and use 'Load unpacked extension...' button.
  2. Press Listen.
  3. Run your code, e.g.:
http://artbek.co.uk?XDEBUG_SESSION_START=xxx
(should work without 'xxx' value, but use it if you want 'XDEBUG_SESSION' cookie to be created)

or

> export XDEBUG_CONFIG="remote_host=0.0.0.0" ('remote_host=0.0.0.0' is optional)
> php myscript_1.php
> php myscript_2.php

or

> XDEBUG_CONFIG="" php myscript.php