mirror of
https://github.com/php/php-src.git
synced 2026-04-30 03:33:17 +02:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
14 lines
249 B
PHP
14 lines
249 B
PHP
--TEST--
|
|
Bug #75696 (posix_getgrnam fails to print details of group)
|
|
--EXTENSIONS--
|
|
posix
|
|
--FILE--
|
|
<?php
|
|
$gid = posix_getgid();
|
|
$name = posix_getgrgid($gid)['name'];
|
|
$info = posix_getgrnam($name);
|
|
var_dump(is_array($info));
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|