Dutch PHP Conference 2025 - Call For Papers

SeasLog::getBasePath

(PECL seaslog >=1.0.0)

SeasLog::getBasePathGet SeasLog base path.

Опис

public static Seaslog::getBasePath(): string

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

If you use Seaslog::setBasePath(), will change the result.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

Return seaslog.default_basepath as string.

Приклади

Приклад #1 SeasLog::getBasePath() example

<?php

var_dump
(SeasLog::getBasePath());

?>

Поданий вище приклад виведе щось схоже на:

string(12) "/var/log/www"
add a note

User Contributed Notes

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