mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
10 lines
184 B
PHP
10 lines
184 B
PHP
--TEST--
|
|
Test function posix_setegid() by calling it with its expected arguments
|
|
--EXTENSIONS--
|
|
posix
|
|
--FILE--
|
|
<?php
|
|
var_dump(posix_setegid(posix_getegid()));
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|