<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.filesystem.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'function.filegroup.php',
    1 => 'filegroup',
    2 => 'Liefert die Gruppenzugeh&ouml;rigkeit einer Datei',
  ),
  'up' => 
  array (
    0 => 'ref.filesystem.php',
    1 => 'Dateisystem',
  ),
  'prev' => 
  array (
    0 => 'function.filectime.php',
    1 => 'filectime',
  ),
  'next' => 
  array (
    0 => 'function.fileinode.php',
    1 => 'fileinode',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'reference/filesystem/functions/filegroup.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.filegroup" class="refentry">
   <div class="refnamediv">
    <h1 class="refname">filegroup</h1>
    <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">filegroup</span> &mdash; <span class="dc-title">
     Liefert die Gruppenzugehörigkeit einer Datei
    </span></p>

   </div>
   <div class="refsect1 description" id="refsect1-function.filegroup-description">
    <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>filegroup</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$filename</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">  
     Ermittelt die Gruppenzugehörigkeit einer Datei. Die Gruppen-ID wird
     in numerischer Form zurückgegeben, der zugehörige Gruppenname kann mit 
     <span class="function"><a href="function.posix-getgrgid.php" class="function">posix_getgrgid()</a></span> ermittelt werden.
    </p>
   </div>


   <div class="refsect1 parameters" id="refsect1-function.filegroup-parameters">
    <h3 class="title">Parameter-Liste</h3>
    <p class="para">
     <dl>
      
       <dt><code class="parameter">filename</code></dt>
       <dd>
        <p class="para">
          Path to the file.
        </p>
       </dd>
      
     </dl>
    </p>
   </div>


   <div class="refsect1 returnvalues" id="refsect1-function.filegroup-returnvalues">
    <h3 class="title">Rückgabewerte</h3>
    <p class="para">
     Gibt die Gruppen ID einer Datei zurück, oder <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> wenn ein Fehler
     aufgetreten ist. Die Gruppen ID wird im numerischen Format zurückgegeben.
     Mit der Funktion <span class="function"><a href="function.posix-getgrgid.php" class="function">posix_getgrgid()</a></span> können Sie
     diese zu ihrem Gruppennamen auflösen. 
    </p>
   </div>

   
   <div class="refsect1 errors" id="refsect1-function.filegroup-errors">
    <h3 class="title">Fehler/Exceptions</h3>
    <p class="para">
     Im Fehlerfall wird ein <strong><code><a href="errorfunc.constants.php#constant.e-warning">E_WARNING</a></code></strong> Fehler gemeldet.
    </p>
   </div>


   <div class="refsect1 examples" id="refsect1-function.filegroup-examples">
    <h3 class="title">Beispiele</h3>
    <p class="para">
     <div class="example" id="example-1">
      <p><strong>Beispiel #1 Finding the group of a file</strong></p>
      <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$filename </span><span style="color: #007700">= </span><span style="color: #DD0000">'index.php'</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">posix_getgrgid</span><span style="color: #007700">(</span><span style="color: #0000BB">filegroup</span><span style="color: #007700">(</span><span style="color: #0000BB">$filename</span><span style="color: #007700">)));<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
      </div>

     </div>
    </p>
   </div>


   <div class="refsect1 notes" id="refsect1-function.filegroup-notes">
    <h3 class="title">Anmerkungen</h3>
    <blockquote class="note"><p><strong class="note">Hinweis</strong>: <span class="simpara">Die Ergebnisse dieser Funktion
werden zwischengespeichert. Weitere Details sind bei
<span class="function"><a href="function.clearstatcache.php" class="function">clearstatcache()</a></span> zu finden.</span></p></blockquote>
    <div class="tip"><strong class="tip">Tipp</strong><p class="simpara">Seit PHP 5.0.0 kann diese
Funktion mit <em>einigen</em> URL-Wrappern benutzt werden. Schauen
Sie in der Liste unter <a href="wrappers.php" class="xref">Unterst&uuml;tzte Protokolle und Wrapper</a> nach, welcher Wrapper die
Funktionalität von <span class="function"><a href="function.stat.php" class="function">stat()</a></span> unterstützt.</p></div>
   </div>


   <div class="refsect1 seealso" id="refsect1-function.filegroup-seealso">
    <h3 class="title">Siehe auch</h3>
    <p class="para">
     <ul class="simplelist">
      <li><span class="function"><a href="function.fileowner.php" class="function" rel="rdfs-seeAlso">fileowner()</a> - Liefert den Eigent&uuml;mer einer Datei</span></li>
      <li><span class="function"><a href="function.posix-getgrgid.php" class="function" rel="rdfs-seeAlso">posix_getgrgid()</a> - Liefert zu einer Gruppen-ID Informationen &uuml;ber diese Gruppe</span></li>
     </ul>
    </p>
   </div>


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