PHP 8.4.0 RC3 available for testing

SeasLog::setRequestID

(PECL seaslog >=1.0.0)

SeasLog::setRequestIDSet SeasLog request_id differentiated requests

Descrição

public static SeasLog::setRequestID(string $request_id): bool

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

request_id

String.

Valor Retornado

Return TRUE on set request_id success, FALSE on failure.

Exemplos

Exemplo #1 SeasLog::setRequestID() example

<?php

var_dump
(SeasLog::setRequestID(time() . rand()));

?>

O exemplo acima produzirá algo semelhante a:

bool(true)

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