<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.posix.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'zh',
  ),
  'this' => 
  array (
    0 => 'function.posix-getgrgid.php',
    1 => 'posix_getgrgid',
    2 => 'Return info about a group by group id',
  ),
  'up' => 
  array (
    0 => 'ref.posix.php',
    1 => 'POSIX 函数',
  ),
  'prev' => 
  array (
    0 => 'function.posix-getgid.php',
    1 => 'posix_getgid',
  ),
  'next' => 
  array (
    0 => 'function.posix-getgrnam.php',
    1 => 'posix_getgrnam',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/posix/functions/posix-getgrgid.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.posix-getgrgid" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">posix_getgrgid</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">posix_getgrgid</span> &mdash; <span class="dc-title">Return info about a group by group id</span></p>

 </div>
 
 <div class="refsect1 description" id="refsect1-function.posix-getgrgid-description">
  <h3 class="title">说明</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>posix_getgrgid</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$group_id</code></span>): <span class="type"><span class="type"><a href="language.types.array.php" class="type array">array</a></span>|<span class="type"><a href="language.types.singleton.php" class="type false">false</a></span></span></div>

  <p class="para rdfs-comment">
   Gets information about a group provided its id.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.posix-getgrgid-parameters">
  <h3 class="title">参数</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">group_id</code></dt>
     <dd>
      <p class="para">
       The group id.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.posix-getgrgid-returnvalues">
  <h3 class="title">返回值</h3>
  <p class="para">
   The array elements returned are:
   <table class="doctable table">
    <caption><strong>The group information array</strong></caption>
    
     <thead>
      <tr>
       <th>Element</th>
       <th>Description</th>
      </tr>

     </thead>

     <tbody class="tbody">
      <tr>
       <td>name</td>
       <td>
        The name element contains the name of the group. This is
        a short, usually less than 16 character &quot;handle&quot; of the
        group, not the real, full name.
       </td>
      </tr>

      <tr>
       <td>passwd</td>
       <td>
        The passwd element contains the group&#039;s password in an
        encrypted format. Often, for example on a system employing
        &quot;shadow&quot; passwords, an asterisk is returned instead.
       </td>
      </tr>

      <tr>
       <td>gid</td>
       <td>
        Group ID, should be the same as the
        <code class="parameter">group_id</code> parameter used when calling the
        function, and hence redundant.
       </td>
      </tr>

      <tr>
       <td>members</td>
       <td>
        This consists of an <span class="type"><a href="language.types.array.php" class="type array">array</a></span> of
        <span class="type"><a href="language.types.string.php" class="type string">string</a></span>&#039;s for all the members in the group.
       </td>
      </tr>

     </tbody>
    
   </table>

   The function returns <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> on failure.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.posix-getgrgid-examples">
  <h3 class="title">示例</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>示例 #1 Example use of <span class="function"><strong>posix_getgrgid()</strong></span></strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /><br />$groupid   </span><span style="color: #007700">= </span><span style="color: #0000BB">posix_getegid</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">$groupinfo </span><span style="color: #007700">= </span><span style="color: #0000BB">posix_getgrgid</span><span style="color: #007700">(</span><span style="color: #0000BB">$groupid</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">$groupinfo</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>以上示例的输出类似于：</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">Array
(
    [name]    =&gt; toons
    [passwd]  =&gt; x
    [members] =&gt; Array
        (
            [0] =&gt; tom
            [1] =&gt; jerry
        )
    [gid]     =&gt; 42
)</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.posix-getgrgid-seealso">
  <h3 class="title">参见</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.posix-getegid.php" class="function" rel="rdfs-seeAlso">posix_getegid()</a> - Return the effective group ID of the current process</span></li>
    <li><span class="function"><a href="function.posix-getgrnam.php" class="function" rel="rdfs-seeAlso">posix_getgrnam()</a> - Return info about a group by name</span></li>
    <li><span class="function"><a href="function.filegroup.php" class="function" rel="rdfs-seeAlso">filegroup()</a> - 取得文件的组</span></li>
    <li><span class="function"><a href="function.stat.php" class="function" rel="rdfs-seeAlso">stat()</a> - 给出文件的信息</span></li>
    <li>POSIX man page GETGRNAM(3)</li>
   </ul>
  </p>
 </div>


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