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

contributors($setup);

?>
<div id="intro.igbinary" class="preface">
  <h1 class="title">Вступ</h1>
  <p class="simpara">
   Igbinary is a drop in replacement for the standard PHP serializer.
   Instead of the time and space consuming textual representation used by PHP&#039;s <span class="function"><a href="function.serialize.php" class="function">serialize()</a></span>,
   igbinary stores PHP data structures in a compact binary form.
   Memory savings are significant when using memcached, APCu,
   or similar memory based storages for serialized data.
   The typical reduction in storage requirements are around 50%.
   The exact percentage depends on the data.
  </p>
 </div><?php manual_footer($setup); ?>