(PECL seaslog >=1.0.0)
SeasLog::getRequestID — 獲得當(dāng)前 SeasLog 中用于區(qū)分請(qǐng)求的 request_id
為了區(qū)分一個(gè)獨(dú)立的請(qǐng)求,如果沒有調(diào)用函數(shù) SeasLog::setRequestId() 進(jìn)行指定,SeasLog 將會(huì)在請(qǐng)求初始化時(shí),使用內(nèi)置函數(shù) `static char *get_uniqid ()` 生成一個(gè) unique 值。
此函數(shù)沒有參數(shù)。
返回一個(gè)由內(nèi)置函數(shù) `static char *get_uniqid ()` 生成的、 或由用戶調(diào)用函數(shù) SeasLog::setRequestId() 指定的字符串。
示例 #1 SeasLog::getRequestID() example
<?php
var_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"