mirror of
https://github.com/php/php-src.git
synced 2024-12-16 13:26:19 +08:00
18 lines
295 B
PHP
18 lines
295 B
PHP
--TEST--
|
|
posix_getrlimit(): Basic tests
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
|
|
if (!function_exists('posix_getrlimit')) die('skip posix_getrlimit() not found');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(posix_getrlimit());
|
|
|
|
?>
|
|
--EXPECTF--
|
|
array(%d) {
|
|
%a
|
|
}
|