Man Page: http_persistent_handles_count
Operating Environment: php
Section: 3
HTTP_PERSISTENT_HANDLES_COUNT(3) 1 HTTP_PERSISTENT_HANDLES_COUNT(3) http_persistent_handles_count - Stat persistent handlesSYNOPSISobject http_persistent_handles_count (void )DESCRIPTIONList statistics about persistent handles usage.PARAMETERSRETURN VALUESReturns persistent handles statistics as stdClass object on success or FALSE on failure.EXAMPLESExample #1 A http_persistent_handles_count(3) example <?php print_r(http_persistent_handles_count()); ?> The above example will output: stdClass Object ( [http_request] => Array ( [GLOBAL] => Array ( [used] => 0 [free] => 1 ) ) [http_request_datashare] => Array ( [GLOBAL] => Array ( [used] => 1 [free] => 0 ) ) [http_request_pool] => Array ( ) )SEE ALSOhttp_persistent_handles_ident(3), http_persistent_handles_clean(3). PHP Documentation Group HTTP_PERSISTENT_HANDLES_COUNT(3)
| Related Man Pages |
|---|
| array_reverse(3) - php |
| http_parse_cookie(3) - php |
| http_parse_message(3) - php |
| datetime.getlasterrors(3) - php |
| http_persistent_handles_ident(3) - php |
| Similar Topics in the Unix Linux Community |
|---|
| Array in awk |
| Store values in an Array |
| how to remove characters from a string |
| Help with manipulating Array in Perl |
| Sort multidimensional Array |