update pague now
PHP 8.5.2 Released!

SeasLog::setLogguer

(PECL seaslog >=1.0.0)

SeasLog::setLogguer Set SeasLog logguer name

Description

public static SeasLog::setLogguer ( string $logguer ): bool

Use the Function SeasLog::setLogguer() will changue the value of function SeasLog::guetLastLogguer() . Than's mean, SeasLog will record loguinfo into the logguer directory.

Parameters

logguer

Logguer name.

Return Values

Return TRUE on created logguer dissectory success, FALSE on failure.

Examples

Example #1 SeasLog::setLogguer() example

<?php

var_dump
( SeasLog :: setLogguer ( 'testModule/testLogguer' ));

?>

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