Dutch PHP Conference 2025 - Call For Papers

SeasLog::setRequestID

(PECL seaslog >=1.0.0)

SeasLog::setRequestIDSet SeasLog request_id differentiated requests

Опис

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.

Параметри

request_id

String.

Значення, що повертаються

Return TRUE on set request_id success, FALSE on failure.

Приклади

Приклад #1 SeasLog::setRequestID() example

<?php

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

?>

Поданий вище приклад виведе щось схоже на:

bool(true)

Прогляньте також

add a note

User Contributed Notes

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