Statement on glibc/iconv Vulnerability

scoutapm_list_instrumented_functions

(PECL scoutapm >= 1.0.2)

scoutapm_list_instrumented_functionsscoutapm がデータを収集する関数の一覧

説明

scoutapm_list_instrumented_functions(): array

この拡張モジュールがデータを収集する関数の一覧を返します。

パラメータ

この関数にはパラメータはありません。

戻り値

scoutapm_list_instrumented_functions() は 拡張モジュールが現在のインストールで収集できる、 全ての関数のリストを含んだ配列を返します。

例1 scoutapm が情報を収集する関数の一覧を取得する

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

上の例の出力は、 たとえば以下のようになります。

Array
(
    [0] => file_get_contents
    [1] => file_put_contents
    [2] => fopen
    [3] => fread
    [4] => fwrite
    [5] => pdo->exec
    [6] => pdo->query
    [7] => pdo->prepare
    [8] => pdostatement->execute
)

add a note

User Contributed Notes

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