<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.xml.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'intro.xml.php',
    1 => 'Вступ',
    2 => 'Вступ',
  ),
  'up' => 
  array (
    0 => 'book.xml.php',
    1 => 'XML Parser',
  ),
  'prev' => 
  array (
    0 => 'book.xml.php',
    1 => 'XML Parser',
  ),
  'next' => 
  array (
    0 => 'xml.setup.php',
    1 => 'Встановлення/налаштування',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/xml/book.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="intro.xml" class="preface">
  <h1 class="title">Вступ</h1>
  <p class="para">
   XML (eXtensible Markup Language) is a data format for structured
   document interchange on the Web.  It is a standard defined by
   The World Wide Web consortium (W3C).  Information about XML and
   related technologies can be found at <a href="http://www.w3.org/XML/" class="link external">&raquo;&nbsp;http://www.w3.org/XML/</a>.
  </p>
  <p class="para">
   This PHP extension implements support for James Clark&#039;s
   <span class="productname">expat</span> in PHP.  This toolkit lets you
   parse, but not validate, XML documents.  It supports three
   source <a href="xml.encoding.php" class="link">character encodings</a>
   also provided by PHP: <code class="literal">US-ASCII</code>,
   <code class="literal">ISO-8859-1</code> and <code class="literal">UTF-8</code>.
   <code class="literal">UTF-16</code> is not supported.
  </p>
  <p class="para">
   This extension lets you <a href="function.xml-parser-create.php" class="link">create XML parsers</a>
   and then define <em>handlers</em> for different XML
   events.  Each XML parser also has a few <a href="function.xml-parser-set-option.php" class="link">parameters</a> you
   can adjust.
  </p>
 </div><?php manual_footer($setup); ?>