mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
16 lines
244 B
PHP
16 lines
244 B
PHP
--TEST--
|
|
posix_initgroups(): Basic tests
|
|
--EXTENSIONS--
|
|
posix
|
|
--SKIPIF--
|
|
<?php
|
|
if (!function_exists('posix_initgroups')) die('skip posix_initgroups() not found');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(posix_initgroups('', 0));
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|