Statement on glibc/iconv Vulnerability

SeasLog::getRequestID

(PECL seaslog >=1.0.0)

SeasLog::getRequestIDGet SeasLog request_id differentiated requests

Descrizione

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.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

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

Esempi

Example #1 SeasLog::getRequestID() example

<?php

var_dump
(SeasLog::getRequestID());
var_dump(SeasLog::setRequestID('reqeust_id_test_'.time()));
var_dump(SeasLog::getRequestID());

?>

Il precedente esempio visualizzerà qualcosa simile a:

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

Vedere anche:

add a note

User Contributed Notes

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