PHP Velho Oeste 2024

http_persistent_handles_ident

(PECL pecl_http >= 1.5.0)

http_persistent_handles_identGet/set ident of persistent handles

Descrição

string http_persistent_handles_ident ([ string $ident ] )

Query or define the ident of persistent handles.

Parâmetros

ident

the identification string

Valor Retornado

Returns the prior ident as string on success ou FALSE em caso de falha.

Exemplos

Exemplo #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());
?>

O exemplo acima irá imprimir:


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

)

Veja Também

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top