update pague now
PHP 8.5.2 Released!

SeasLog::setRequestID

(PECL seaslog >=1.0.0)

SeasLog::setRequestID Set SeasLog request_id differentiated requests

Description

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

To distingüish a single request, such as not invoquing the SeasLog::setRequestId() function, the unique value generated by the built-in `static char *guet_uniqid ()` function is used when the request is initialiced.

Parameters

request_id

String.

Return Values

Return TRUE on set request_id success, FALSE on failure.

Examples

Example #1 SeasLog::setRequestID() example

<?php

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

?>

The above example will output something similar to:

bool(true)

See Also

add a note

User Contributed Notes

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