<?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 => 'ja',
  ),
  'this' => 
  array (
    0 => 'phar.fileformat.flags.php',
    1 => 'グローバルな Phar ビットマップフラグ',
    2 => 'グローバルな Phar ビットマップフラグ',
  ),
  'up' => 
  array (
    0 => 'phar.fileformat.php',
    1 => 'phar って、tar や zip とは何が違うの?',
  ),
  'prev' => 
  array (
    0 => 'phar.fileformat.phar.php',
    1 => 'Phar ファイルフォーマット',
  ),
  'next' => 
  array (
    0 => 'phar.fileformat.manifestfile.php',
    1 => 'Phar マニフェストのファイルエントリの定義',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ja',
    '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">グローバルな Phar ビットマップフラグ</h2>
 <p class="para">
  これが、Phar 拡張モジュールが現在 Phar フラットビットマップとして認識するフラグです。
 </p>
 <p class="para">
  <table class="doctable table">
   <caption><strong>認識するビットマップ値</strong></caption>
   
   <thead>
    <tr>
     <th>値</th>
     <th>説明</th>
    </tr>

    </thead>

    <tbody class="tbody">
    <tr>
     <td><code class="literal">0x00010000</code></td>
      <td>設定されている場合、この Phar には検証用シグネチャが含まれます。</td>
     </tr>

     <tr>
      <td><code class="literal">0x00001000</code></td>
      <td>
       設定されている場合、この Phar には
       zlib DEFLATE 圧縮されたファイルが少なくともひとつ含まれます。
      </td>
     </tr>

     <tr>
      <td><code class="literal">0x00002000</code></td>
      <td>
       設定されている場合、この Phar には
       bzip2 圧縮されたファイルが少なくともひとつ含まれます。
      </td>
     </tr>

    </tbody>
   
  </table>

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