<?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-getpwnam.php',
    1 => 'posix_getpwnam',
    2 => 'Return info about a user by username',
  ),
  'up' => 
  array (
    0 => 'ref.posix.php',
    1 => 'POSIX 函数',
  ),
  'prev' => 
  array (
    0 => 'function.posix-getppid.php',
    1 => 'posix_getppid',
  ),
  'next' => 
  array (
    0 => 'function.posix-getpwuid.php',
    1 => 'posix_getpwuid',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/posix/functions/posix-getpwnam.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

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

 </div>
 
 <div class="refsect1 description" id="refsect1-function.posix-getpwnam-description">
  <h3 class="title">说明</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>posix_getpwnam</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$username</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">
   Returns an <span class="type"><a href="language.types.array.php" class="type array">array</a></span> of information about the given user.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.posix-getpwnam-parameters">
  <h3 class="title">参数</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">username</code></dt>
     <dd>
      <p class="para">
       An alphanumeric username.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.posix-getpwnam-returnvalues">
  <h3 class="title">返回值</h3>
  <p class="para">
   On success an array with the following elements is returned, else 
   <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> is returned:
   <table class="doctable table">
    <caption><strong>The user 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 username of the user. This is
        a short, usually less than 16 character &quot;handle&quot; of the
        user, not the real, full name. This should be the same as
        the <code class="parameter">username</code> parameter used when
        calling the function, and hence redundant.
       </td>
      </tr>

      <tr>
       <td>passwd</td>
       <td>
        The passwd element contains the user&#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>uid</td>
       <td>
        User ID of the user in numeric form.
       </td>
      </tr>

      <tr>
       <td>gid</td>
       <td>
        The group ID of the user. Use the function
        <span class="function"><a href="function.posix-getgrgid.php" class="function">posix_getgrgid()</a></span> to resolve the group
        name and a list of its members.
       </td>
      </tr>

      <tr>
       <td>gecos</td>
       <td>
        GECOS is an obsolete term that refers to the finger
        information field on a Honeywell batch processing system.
        The field, however, lives on, and its contents have been
        formalized by POSIX. The field contains a comma separated
        list containing the user&#039;s full name, office phone, office
        number, and home phone number. On most systems, only the
        user&#039;s full name is available.
       </td>
      </tr>

      <tr>
       <td>dir</td>
       <td>
        This element contains the absolute path to the home
        directory of the user.
       </td>
      </tr>

      <tr>
       <td>shell</td>
       <td>
        The shell element contains the absolute path to the
        executable of the user&#039;s default shell.
       </td>
      </tr>

     </tbody>
    
   </table>

  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.posix-getpwnam-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_getpwnam()</strong></span></strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /><br />$userinfo </span><span style="color: #007700">= </span><span style="color: #0000BB">posix_getpwnam</span><span style="color: #007700">(</span><span style="color: #DD0000">"tom"</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">$userinfo</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; tom
    [passwd]  =&gt; x
    [uid]     =&gt; 10000
    [gid]     =&gt; 42
    [gecos]   =&gt; &quot;tom,,,&quot;
    [dir]     =&gt; &quot;/home/tom&quot;
    [shell]   =&gt; &quot;/bin/bash&quot;
)</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.posix-getpwnam-seealso">
  <h3 class="title">参见</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.posix-getpwuid.php" class="function" rel="rdfs-seeAlso">posix_getpwuid()</a> - Return info about a user by user id</span></li>
    <li>POSIX man page GETPWNAM(3)</li>
   </ul>
  </p>
 </div>


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