<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/refs.basic.other.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'book.igbinary.php',
    1 => 'Igbinary',
    2 => 'Igbinary',
  ),
  'up' => 
  array (
    0 => 'refs.basic.other.php',
    1 => 'Sonstige Grunderweiterungen',
  ),
  'prev' => 
  array (
    0 => 'fannconnection.setweight.php',
    1 => 'FANNConnection::setWeight',
  ),
  'next' => 
  array (
    0 => 'igbinary.setup.php',
    1 => 'Installation/Konfiguration',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/igbinary/book.xml',
  ),
  'history' => 
  array (
  ),
  'extra_header_links' => 
  array (
    'rel' => 'alternate',
    'href' => '/manual/en/feeds/book.igbinary.atom',
    'type' => 'application/atom+xml',
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="book.igbinary" class="book">
 
 <h1 class="title">Igbinary</h1>
 

 <div id="intro.igbinary" class="preface">
  <h1 class="title">Einführung</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>

 



 




<ul class="chunklist chunklist_book"><li><a href="igbinary.setup.php">Installation/Konfiguration</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="igbinary.installation.php">Installation</a></li><li><a href="igbinary.configuration.php">Laufzeit-Konfiguration</a></li></ul></li><li><a href="ref.igbinary.php">Igbinary Funktionen</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="function.igbinary-serialize.php">igbinary_serialize</a> — Generates a compact, storable binary representation of a value</li><li><a href="function.igbinary-unserialize.php">igbinary_unserialize</a> — Creates a PHP value from a stored representation from igbinary_serialize</li></ul></li></ul></div><?php manual_footer($setup); ?>