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

contributors($setup);

?>
<div id="phar.creating.intro" class="section">
 <h2 class="title">Creating Phar Archives: Introduction</h2>
 <p class="para">
  To be written fully in the near future.  Before reading this, be sure to read
  <a href="phar.using.php" class="link">How to use Phar Archives</a>.
 </p>
 <p class="para">
  A great place to start is by reading about <span class="function"><a href="phar.buildfromiterator.php" class="function">Phar::buildFromIterator()</a></span>,
  and the specifics of the <a href="phar.fileformat.php" class="link">file format</a> choices
  available for archives.  A healthy understanding of what a stub is and does is crucial
  to phar archive creation, and so <span class="function"><a href="phar.setstub.php" class="function">Phar::setStub()</a></span> and
  <span class="function"><a href="phar.createdefaultstub.php" class="function">Phar::createDefaultStub()</a></span> are good places to start as well.
  If you are distributing a web-based application, it is crucial to know about
  <span class="function"><a href="phar.webphar.php" class="function">Phar::webPhar()</a></span> and related method
  <span class="function"><a href="phar.mungserver.php" class="function">Phar::mungServer()</a></span>.  Any application that accesses
  its own files should also consider using <span class="function"><a href="phar.interceptfilefuncs.php" class="function">Phar::interceptFileFuncs()</a></span>.
 </p>
</div><?php manual_footer($setup); ?>