PHP Conference Japan 2024

SeasLog::getBasePath

(PECL seaslog >=1.0.0)

SeasLog::getBasePath获取SeasLog基路径。

描述

public static Seaslog::getBasePath(): string

使用函数SeasLog::getBasePath()将获取在php.ini(seaslog.ini)中配置的seaslog.default_basepath的值。

如果您使用Seaslog::setBasePath(),将更改结果。

参数

此函数没有参数。

返回值

返回seaslog.default_basepath作为字符串。

示例

示例 #1 SeasLog::getBasePath() 示例

<?php

var_dump
(SeasLog::getBasePath());

?>

以上示例将输出类似于以下内容

string(12) "/var/log/www"
添加备注

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top