dispatch workflow
[mdref/mdref-raphf] / raphf / stat_persistent_handles.md
1 # object raphf\stat_persistent_handles()
2
3 Retrieve statistics about current process'/thread's persistent handles.
4
5 ## Params:
6
7 None.
8
9 ## Returns:
10
11 * object, stdClass instance
12
13
14 ## Example:
15
16 var_dump(raphf\stat_persistent_handles());
17
18 Yields:
19
20 object(stdClass)#6 (3) {
21 ["http\Client\Curl"]=>
22 array(0) {
23 }
24 ["http\Client\Curl\Request"]=>
25 array(1) {
26 ["php.net:80"]=>
27 array(2) {
28 ["used"]=>
29 int(2)
30 ["free"]=>
31 int(1)
32 }
33 }
34 ["pq\Connection"]=>
35 array(0) {
36 }
37 }