<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/debugger.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'debugger-about.php',
    1 => 'About debugging in PHP',
    2 => 'About debugging in PHP',
  ),
  'up' => 
  array (
    0 => 'debugger.php',
    1 => 'Debugging in PHP',
  ),
  'prev' => 
  array (
    0 => 'debugger.php',
    1 => 'Debugging in PHP',
  ),
  'next' => 
  array (
    0 => 'configure.php',
    1 => 'Configure options',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'appendices/debugger.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="debugger-about" class="sect1">
   <h2 class="title">About debugging in PHP</h2>
   <p class="simpara">
    PHP is shipped with a basic command line interactive debugger,
    <a href="migration56.new-features.php#migration56.new-features.phpdbg" class="link">phpdbg</a>.
   </p>
   <p class="simpara">
    Most IDEs have support for <a href="http://xdebug.org/" class="link external">&raquo;&nbsp;Xdebug</a>,
    a free debug tool, which allows for single step debugging your PHP
    applications.
   </p>
  </div><?php manual_footer($setup); ?>