|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patchesposix_getgrouplist (last revision 2012-02-14 19:50 UTC by dab1818 at gmail dot com)Pull Requests |
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 02:00:01 2025 UTC |
Description: ------------ getgrouplist function is not posix standard, but available at most distros Test script: --------------- var_dump(posix_getgrouplist('root',0)); Expected result: ---------------- root:x:0:root bin:x:1:root,bin,daemon daemon:x:2:root,bin,daemon array(3) { [0]=> int(0) [1]=> int(1) [2]=> int(2) } Actual result: -------------- Call to undefined function posix_getgrouplist()