📄 function.posix-getgrgid.html
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head> <title>Return info about a group by group id</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> </head> <body><div style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="function.posix-getgid.html">posix_getgid</a></div> <div class="next" style="text-align: right; float: right;"><a href="function.posix-getgrnam.html">posix_getgrnam</a></div> <div class="up"><a href="ref.posix.html">POSIX Functions</a></div> <div class="home"><a href="index.html">PHP Manual</a></div></div><hr /><div id="function.posix-getgrgid" class="refentry"> <div class="refnamediv"> <h1 class="refname">posix_getgrgid</h1> <p class="verinfo">(PHP 4, PHP 5)</p><p class="refpurpose"><span class="refname">posix_getgrgid</span> — <span class="dc-title">Return info about a group by group id</span></p> </div> <div class="refsect1 description"> <h3 class="title">Description</h3> <div class="methodsynopsis dc-description"> <span class="type">array</span> <span class="methodname"><b><b>posix_getgrgid</b></b></span> ( <span class="methodparam"><span class="type">int</span> <tt class="parameter">$gid</tt></span> )</div> <p class="para rdfs-comment"> Gets information about a group provided its id. </p> </div> <div class="refsect1 parameters"> <h3 class="title">Parameters</h3> <p class="para"> <dl> <dt> <span class="term"><i><tt class="parameter">gid</tt></i></span> <dd> <p class="para"> The group id. </p> </dd> </dt> </dl> </p> </div> <div class="refsect1 returnvalues"> <h3 class="title">Return Values</h3> <p class="para"> The array elements returned are: <table border="5"> <caption><b>The group information array</b></caption> <colgroup> <thead valign="middle"> <tr valign="middle"> <th colspan="1">Element</th> <th colspan="1">Description</th> </tr> </thead> <tbody valign="middle" class="tbody"> <tr valign="middle"> <td colspan="1" rowspan="1" align="left">name</td> <td colspan="1" rowspan="1" align="left"> The name element contains the name of the group. This is a short, usually less than 16 character "handle" of the group, not the real, full name. </td> </tr> <tr valign="middle"> <td colspan="1" rowspan="1" align="left">passwd</td> <td colspan="1" rowspan="1" align="left"> The passwd element contains the group's password in an encrypted format. Often, for example on a system employing "shadow" passwords, an asterisk is returned instead. </td> </tr> <tr valign="middle"> <td colspan="1" rowspan="1" align="left">gid</td> <td colspan="1" rowspan="1" align="left"> Group ID, should be the same as the <i><tt class="parameter">gid</tt></i> parameter used when calling the function, and hence redundant. </td> </tr> <tr valign="middle"> <td colspan="1" rowspan="1" align="left">members</td> <td colspan="1" rowspan="1" align="left"> This consists of an <a href="language.types.array.html" class="type array">array</a> of <a href="language.types.string.html" class="type string">string</a>'s for all the members in the group. </td> </tr> </tbody> </colgroup> </table> </p> </div> <div class="refsect1 changelog"> <h3 class="title">ChangeLog</h3> <p class="para"> <table class="informaltable"> <colgroup> <thead valign="middle"> <tr valign="middle"> <th colspan="1">Version</th> <th colspan="1">Description</th> </tr> </thead> <tbody valign="middle" class="tbody"> <tr valign="middle"> <td colspan="1" rowspan="1" align="left">4.2.0</td> <td colspan="1" rowspan="1" align="left"> Prior to this version, members was simply an integer representing the number of members in the group, and the member names were returned with numerical indices. </td> </tr> </tbody> </colgroup> </table> </p> </div> <div class="refsect1 examples"> <h3 class="title">Examples</h3> <p class="para"> <div class="example"> <p><b>Example #1 Example use of <b>posix_getgrgid()</b></b></p> <div class="example-contents"><div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB"><?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">?></span></span></code></div> </div> <div class="example-contents"><p>The above example will output something similar to:</p></div> <div class="example-contents"><pre><div class="cdata"><pre>Array( [name] => toons [passwd] => x [members] => Array ( [0] => tom [1] => jerry ) [gid] => 42)</pre></div> </pre></div> </div> </p> </div> <div class="refsect1 seealso"> <h3 class="title">See Also</h3> <p class="para"> <ul class="simplelist"> <li class="member"><a href="function.posix-getegid.html" class="function" rel="rdfs-seeAlso">posix_getegid()</a></li> <li class="member"><a href="function.posix-getgrnam.html" class="function" rel="rdfs-seeAlso">posix_getgrnam()</a></li> <li class="member"><a href="function.filegroup.html" class="function" rel="rdfs-seeAlso">filegroup()</a></li> <li class="member"><a href="function.stat.html" class="function" rel="rdfs-seeAlso">stat()</a></li> <li class="member"><a href="features.safe-mode.html#ini.safe-mode-gid" class="link">safe_mode_gid</a></li> <li class="member">POSIX man page GETGRNAM(3)</li> </ul> </p> </div></div><hr /><div style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="function.posix-getgid.html">posix_getgid</a></div> <div class="next" style="text-align: right; float: right;"><a href="function.posix-getgrnam.html">posix_getgrnam</a></div> <div class="up"><a href="ref.posix.html">POSIX Functions</a></div> <div class="home"><a href="index.html">PHP Manual</a></div></div></body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -