php8.5
Home/ Manual/ seaslog / seaslog/ SeasLog::setRequestID

SeasLog::setRequestID

PHP function Edit on GitHub ✎

(PECL seaslog >=1.0.0)

Set SeasLog request_id differentiated requests

Description

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.

Parameters

request_id

String.

Return Values

Return TRUE on set request_id success, FALSE on failure.

Examples

SeasLog::setRequestID() example

php
<?php

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

?>

The above example will output something similar to:

output
bool(true)

See Also

  • SeasLog::getRequestID

Source: reference/seaslog/seaslog/setrequestid.xml · from the official PHP manual (php/doc-en)