mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
19 lines
282 B
PHP
19 lines
282 B
PHP
--TEST--
|
|
Test posix_getpgrp() function : basic functionality
|
|
--EXTENSIONS--
|
|
posix
|
|
--FILE--
|
|
<?php
|
|
echo "Basic test of POSIX getpgrp function\n";
|
|
|
|
$pgrp = posix_getpgrp();
|
|
|
|
var_dump($pgrp);
|
|
|
|
?>
|
|
===DONE====
|
|
--EXPECTF--
|
|
Basic test of POSIX getpgrp function
|
|
int(%d)
|
|
===DONE====
|
|
|