PHP 8.1.28 Released!

SeasLog::setLogger

(PECL seaslog >=1.0.0)

SeasLog::setLoggerSet SeasLog logger name

説明

public static SeasLog::setLogger(string $logger): bool

Use the Function SeasLog::setLogger() will change the value of function SeasLog::getLastLogger(). Than's mean, SeasLog will record loginfo into the logger directory.

パラメータ

logger

Logger name.

戻り値

Return TRUE on created logger disectory success, FALSE on failure.

例1 SeasLog::setLogger() example

<?php

var_dump
(SeasLog::setLogger('testModule/testLogger'));

?>

上の例の出力は、 たとえば以下のようになります。

bool(true)

参考

add a note

User Contributed Notes

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