<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.zlib.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'function.gztell.php',
    1 => 'gztell',
    2 => 'Ermittelt die aktuelle Position eines gz-Dateizeigers',
  ),
  'up' => 
  array (
    0 => 'ref.zlib.php',
    1 => 'Zlib-Funktionen',
  ),
  'prev' => 
  array (
    0 => 'function.gzseek.php',
    1 => 'gzseek',
  ),
  'next' => 
  array (
    0 => 'function.gzuncompress.php',
    1 => 'gzuncompress',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'reference/zlib/functions/gztell.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.gztell" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">gztell</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">gztell</span> &mdash; <span class="dc-title">Ermittelt die aktuelle Position eines gz-Dateizeigers</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.gztell-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>gztell</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$stream</code></span>): <span class="type"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span>|<span class="type"><a href="language.types.singleton.php" class="type false">false</a></span></span></div>

  <p class="para rdfs-comment">
   Gibt die aktuelle Schreib-/Leseposition des angegebenen gz-Dateizeigers
   zurück. Diese entspricht dem Offset in die nicht komprimierten Dateidaten.
  </p>
 </div>

 <div class="refsect1 parameters" id="refsect1-function.gztell-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">stream</code></dt>
     <dd>
      <p class="para">
       Der gz-Dateizeiger. Dieser muss auf eine gültige, erfolgreich mit
       <span class="function"><a href="function.gzopen.php" class="function">gzopen()</a></span> geöffnete Datei zeigen.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-function.gztell-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="para">
   Die aktuelle Dateiposition oder <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> bei Fehlern.
  </p>
 </div>

 <div class="refsect1 seealso" id="refsect1-function.gztell-seealso">
  <h3 class="title">Siehe auch</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.gzopen.php" class="function" rel="rdfs-seeAlso">gzopen()</a> - &Ouml;ffnet eine gz-Datei</span></li>
    <li><span class="function"><a href="function.gzseek.php" class="function" rel="rdfs-seeAlso">gzseek()</a> - Positioniert den gz-Dateizeiger</span></li>
    <li><span class="function"><a href="function.gzrewind.php" class="function" rel="rdfs-seeAlso">gzrewind()</a> - Setzt den gz-Dateizeiger auf den Anfang zur&uuml;ck</span></li>
   </ul>
  </p>
 </div>

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