<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/langref.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'language.errors.php',
    1 => 'Errors',
    2 => 'Errors',
  ),
  'up' => 
  array (
    0 => 'langref.php',
    1 => 'Language Reference',
  ),
  'prev' => 
  array (
    0 => 'language.enumerations.examples.php',
    1 => 'Examples',
  ),
  'next' => 
  array (
    0 => 'language.errors.basics.php',
    1 => 'Basics',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'language/errors.xml',
  ),
  'history' => 
  array (
  ),
  'extra_header_links' => 
  array (
    'rel' => 'alternate',
    'href' => '/manual/en/feeds/language.errors.atom',
    'type' => 'application/atom+xml',
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="language.errors" class="chapter">
 <h1 class="title">Errors</h1>
<h2>Table of Contents</h2><ul class="chunklist chunklist_chapter"><li><a href="language.errors.basics.php">Basics</a></li><li><a href="language.errors.php7.php">Errors in PHP 7</a></li></ul>


 <div id="language.errors.intro" class="sect1">
  <h2 class="title">Introduction</h2>

  <p class="para">
   Sadly, no matter how careful we are when writing our code, errors are a
   fact of life. PHP will report errors, warnings and notices for many common
   coding and runtime problems, and knowing how to detect and handle these
   errors will make debugging much easier.
  </p>
 </div>

 



 



 







</div>
<?php manual_footer($setup); ?>