Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- for($uid=0;$uid<2000;$uid++){
- $nothing = posix_getpwuid($uid);
- if (!empty($nothing)) {
- while (list ($key, $val) = each($nothing)){
- print "$val:";
- }
- print "<br />";
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement