<?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 => 'uk',
  ),
  'this' => 
  array (
    0 => 'phar.fileformat.flags.php',
    1 => 'Global Phar bitmapped flags',
    2 => 'Global Phar bitmapped flags',
  ),
  '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.phar.php',
    1 => 'Phar File Format',
  ),
  'next' => 
  array (
    0 => 'phar.fileformat.manifestfile.php',
    1 => 'Phar manifest file entry definition',
  ),
  '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.flags" class="section">
 <h2 class="title">Global Phar bitmapped flags</h2>
 <p class="para">
  Here are the bitmapped flags currently recognized by the Phar extension
  for the global Phar flat bitmap:
 </p>
 <p class="para">
  <table class="doctable table">
   <caption><strong>Bitmap values recognized</strong></caption>
   
   <thead>
    <tr>
     <th>Value</th>
     <th>Description</th>
    </tr>

    </thead>

    <tbody class="tbody">
    <tr>
     <td><code class="literal">0x00010000</code></td>
      <td>If set, this Phar contains a verification signature</td>
     </tr>

     <tr>
      <td><code class="literal">0x00001000</code></td>
      <td>
       If set, this Phar contains at least 1 file that
       is compressed with zlib DEFLATE compression
      </td>
     </tr>

     <tr>
      <td><code class="literal">0x00002000</code></td>
      <td>
       If set, this Phar contains at least 1 file that
       is compressed with bzip2 compression
      </td>
     </tr>

    </tbody>
   
  </table>

 </p>
</div><?php manual_footer($setup); ?>