View Single Post
  #54  
Old 12-16-2008, 09:22 AM
mistwang mistwang is offline
LiteSpeed Staff
 
Join Date: May 2003
Location: New Jersey
Posts: 7,583
You can use the following script to dump the system resource limit for PHP process

Code:
<?php
$limits = posix_getrlimit();

print_r($limits);
?>
Reply With Quote