Updated example results in chown function (closes #54115).

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@308757 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Shein Alexey 2011-02-28 10:16:50 +00:00
parent 3de058b030
commit 0885523faf

View file

@ -78,22 +78,16 @@ print_r(posix_getpwuid($stat['uid']));
&example.outputs.similar;
<screen>
<![CDATA[
array(7) {
["name"]=>
string(13) "php.net"
["passwd"]=>
string(1) "x"
["uid"]=>
int(148864)
["gid"]=>
int(148910)
["gecos"]=>
string(13) "php.net"
["dir"]=>
string(25) "/home/sites/php.net"
["shell"]=>
string(13) "/sbin/nologin"
}
Array
(
[name] => root
[passwd] => x
[uid] => 0
[gid] => 0
[gecos] => root
[dir] => /root
[shell] => /bin/bash
)
]]>
</screen>
</example>