PHP 8.4.0 RC4 available for testing

SeasLog::getLastLogger

(PECL seaslog >=1.0.0)

SeasLog::getLastLoggerGet SeasLog last logger path

Descrição

public static SeasLog::getLastLogger(): string

Use the Function SeasLog::getLastLogger() will get the value of seaslog.default_logger what configured in php.ini(seaslog.ini).

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Use the Function SeasLog::setLogger() will change the value of function SeasLog::getLastLogger().

Exemplos

Exemplo #1 SeasLog::getLastLogger() example

<?php

var_dump
(SeasLog::getLastLogger());
SeasLog::setLogger('theNewLogger');
var_dump(SeasLog::getLastLogger());
?>

O exemplo acima produzirá algo semelhante a:

string(7) "default"
string(12) "theNewLogger"

Veja Também

adicione uma nota

Notas Enviadas por Usuários (em inglês)

Não há notas de usuários para esta página.
To Top