PHP 8.4.0 RC4 available for testing

SeasLog::getRequestID

(PECL seaslog >=1.0.0)

SeasLog::getRequestIDGet SeasLog request_id differentiated requests

Descrição

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.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

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

Exemplos

Exemplo #1 SeasLog::getRequestID() example

<?php

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

?>

O exemplo acima produzirá algo semelhante a:

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

Veja Também

adicione uma nota

Notas Enviadas por Usuários (em inglês)

Não há notas de usuários para esta página.
To Top