<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/phar.fileformat.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'phar.fileformat.ingredients.php',
    1 => 'Ingredients of all Phar archives, independent of file format',
    2 => 'Ingredients of all Phar archives, independent of file format',
  ),
  'up' => 
  array (
    0 => 'phar.fileformat.php',
    1 => 'What makes a phar a phar and not a tar or a zip?',
  ),
  'prev' => 
  array (
    0 => 'phar.fileformat.php',
    1 => 'What makes a phar a phar and not a tar or a zip?',
  ),
  'next' => 
  array (
    0 => 'phar.fileformat.stub.php',
    1 => 'Phar file stub',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/phar/fileformat.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="phar.fileformat.ingredients" class="section">
  <h2 class="title">Ingredients of all Phar archives, independent of file format</h2>
  <p class="para">
   All Phar archives contain three to four sections:
   <ol type="1">
    <li class="listitem">
     <p class="para">a stub</p>
    </li>
    <li class="listitem">
     <p class="para">a manifest describing the contents</p>
    </li>
    <li class="listitem">
     <p class="para">the file contents</p>
    </li>
    <li class="listitem">
     <p class="para">[optional] a signature for verifying Phar integrity (phar file format only)</p>
    </li>
   </ol>
  </p>
 </div><?php manual_footer($setup); ?>