1--TEST-- 2posix_getrlimit(): Basic tests 3--SKIPIF-- 4<?php 5if (!extension_loaded('posix')) die('skip - POSIX extension not loaded'); 6if (!function_exists('posix_getrlimit')) die('skip posix_getrlimit() not found'); 7?> 8--FILE-- 9<?php 10echo "Basic test of POSIX posix_getrlimit function\n"; 11var_dump(posix_getrlimit()); 12 13?> 14===DONE==== 15--EXPECTF-- 16Basic test of POSIX posix_getrlimit function 17array(%d) { 18%a 19} 20===DONE====