<?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 => 'ja',
  ),
  'this' => 
  array (
    0 => 'language.errors.php',
    1 => 'エラー',
    2 => 'エラー',
  ),
  'up' => 
  array (
    0 => 'langref.php',
    1 => '言語リファレンス',
  ),
  'prev' => 
  array (
    0 => 'language.enumerations.examples.php',
    1 => '例',
  ),
  'next' => 
  array (
    0 => 'language.errors.basics.php',
    1 => '基本',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ja',
    '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">エラー</h1>
<h2>目次</h2><ul class="chunklist chunklist_chapter"><li><a href="language.errors.basics.php">基本</a></li><li><a href="language.errors.php7.php">PHP 7 でのエラー</a></li></ul>


 <div id="language.errors.intro" class="sect1">
  <h2 class="title">はじめに</h2>

  <p class="para">
   残念ながら、どんなに気をつけてコードを書いたところで、
   エラーをなくすことはできません。
   PHP は、コーディングや実行時に発生する問題を、
   エラー (error) や警告 (warning) そして注意 (notice) などの形式で報告します。
   これらの報告を検出して処理する方法を知っておけば、
   デバッグがずっと楽になることでしょう。
  </p>
 </div>

 





 



 









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