<?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 => 'uk',
  ),
  'this' => 
  array (
    0 => 'function.posix-getgrnam.php',
    1 => 'posix_getgrnam',
    2 => 'Return info about a group by name',
  ),
  'up' => 
  array (
    0 => 'ref.posix.php',
    1 => 'POSIX Функції',
  ),
  'prev' => 
  array (
    0 => 'function.posix-getgrgid.php',
    1 => 'posix_getgrgid',
  ),
  'next' => 
  array (
    0 => 'function.posix-getgroups.php',
    1 => 'posix_getgroups',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/posix/functions/posix-getgrnam.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

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

 </div>
 
 <div class="refsect1 description" id="refsect1-function.posix-getgrnam-description">
  <h3 class="title">Опис</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>posix_getgrnam</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$name</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 name. 
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.posix-getgrnam-parameters">
  <h3 class="title">Параметри</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">name</code></dt>
     <dd>
      <p class="para">The name of the group</p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.posix-getgrnam-returnvalues">
  <h3 class="title">Значення, що повертаються</h3>
  <p class="para">
   Returns an <span class="type"><a href="language.types.array.php" class="type array">array</a></span> on success,  або <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> в разі помилки.
   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.  This should be the same as
        the <code class="parameter">name</code> parameter used when
        calling the function, and hence redundant.
       </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 of the group in numeric form.
       </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>

  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.posix-getgrnam-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_getgrnam()</strong></span></strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /><br />$groupinfo </span><span style="color: #007700">= </span><span style="color: #0000BB">posix_getgrnam</span><span style="color: #007700">(</span><span style="color: #DD0000">"toons"</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-getgrnam-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-getgrgid.php" class="function" rel="rdfs-seeAlso">posix_getgrgid()</a> - Return info about a group by group id</span></li>
    <li><span class="function"><a href="function.filegroup.php" class="function" rel="rdfs-seeAlso">filegroup()</a> - Gets file group</span></li>
    <li><span class="function"><a href="function.stat.php" class="function" rel="rdfs-seeAlso">stat()</a> - Gives information about a file</span></li>
    <li>POSIX man page GETGRNAM(3)</li>
   </ul>
  </p>
 </div>


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