Php/docs/seaslog.getrequestid

提供:Dev Guides
< Php
移動先:案内検索

SeasLog::getRequestID

(PECL seaslog >=1.0.0)

SeasLog::getRequestIDGet SeasLog request_id differentiated requests


説明

public static SeasLog::getRequestID ( ) : string

To distinguish a single request, such as not invoking the SeasLog::setRequestId() function, the unique value generated by the built-in `static char *get_uniqid ()` function is used when the request is initialized.


パラメータ

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


返り値

Return string generated by the built-in `static char *get_uniqid ()` function, or setted by SeasLog::setRequestId() function.


例1 SeasLog::getRequestID() example

<?phpvar_dump(SeasLog::getRequestID());var_dump(SeasLog::setRequestID('reqeust_id_test_'.time()))var_dump(SeasLog::getRequestID());?>

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


string(13) "5b3f21a209519"
bool(true)
string(26) "reqeust_id_test_1530864034"

参考