update : 2015.11.03
php.shukuma.com

검색:
 
 
Stat persistent handles

http_persistent_handles_count

(PECL pecl_http >= 1.5.0)

http_persistent_handles_countStat persistent handles

설명

object http_persistent_handles_count ( void )

List statistics about persistent handles usage.

인수

반환값

Returns persistent handles statistics as stdClass object on success실패 시 FALSE를 반환합니다.

예제

Example #1 A http_persistent_handles_count() example

<?php
print_r
(http_persistent_handles_count());
?>

위 예제의 출력:

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
        (
        )

)

참고