CakeFest 2024: The Official CakePHP Conference

SeasLog::getLastLogger

(PECL seaslog >=1.0.0)

SeasLog::getLastLoggerGet SeasLog last logger path

Beschreibung

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).

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

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

Beispiele

Beispiel #1 SeasLog::getLastLogger() example

<?php

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

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

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

Siehe auch

add a note

User Contributed Notes

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