update : 2015.11.03
php.shukuma.com

검색:
 
 
Get/set ident of persistent handles

http_persistent_handles_ident

(PECL pecl_http >= 1.5.0)

http_persistent_handles_identGet/set ident of persistent handles

설명

string http_persistent_handles_ident ([ string $ident ] )

Query or define the ident of persistent handles.

인수

ident

the identification string

반환값

Returns the prior ident as string on success실패 시 FALSE를 반환합니다.

예제

Example #1 A http_persistent_handles_ident() example

<?php
echo http_persistent_handles_ident("CUSTOM"), "\n";
echo 
http_persistent_handles_ident("MyApp1"), "\n";
http_get("http://www.example.com/");
print_r(http_persistent_handles_count());
?>

위 예제의 출력:


GLOBAL
CUSTOM
stdClass Object
(
[http_request] => Array
(
[MyApp1] => Array
(
[used] => 0
[free] => 1
)

)

[http_request_datashare] => Array
(
[GLOBAL] => Array
(
[used] => 1
[free] => 0
)

)

[http_request_pool] => Array
(
)

)

참고