19 lines
241 B
PHP
19 lines
241 B
PHP
--TEST--
|
|
posix_getrlimit(): Basic tests
|
|
--EXTENSIONS--
|
|
posix
|
|
--SKIPIF--
|
|
<?php
|
|
if (!function_exists('posix_getrlimit')) die('skip posix_getrlimit() not found');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(posix_getrlimit());
|
|
|
|
?>
|
|
--EXPECTF--
|
|
array(%d) {
|
|
%a
|
|
}
|