1--TEST--
2Test posix_getpwuid() function : basic functionality
3--EXTENSIONS--
4posix
5--FILE--
6<?php
7  echo "Basic test of POSIX getpwuid\n";
8
9
10  $pwuid = posix_getpwuid(posix_getuid());
11
12  print_r($pwuid);
13
14?>
15===DONE====
16--EXPECTF--
17Basic test of POSIX getpwuid
18Array
19(
20    [name] => %s
21    [passwd] => %S
22    [uid] => %d
23    [gid] => %d
24    [gecos] => %S
25    [dir] => %s
26    [shell] => %s
27)
28===DONE====
29