• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • SeasLog::closeLoggerStream()

    (PECL seaslog >=1.8.6)

    Manually release stream flow from logger

    说明

    publicstaticSeasLog::closeLoggerStream(int $model,string $logger): bool

    Manually release stream flow from logger. SeasLog caches the stream handle opened by the log logger to save the overhead of creating a stream. The handle will be automatically released at the end of the request. If in CLI mode, the process will also automatically release when it exits. Or you can use the following functions to manually release(manually release function needs to update SeasLog 1.8.6 or updated version).

    参数

    $model

    Constant int.

    • SEASLOG_CLOSE_LOGGER_STREAM_MOD_ALL
    • SEASLOG_CLOSE_LOGGER_STREAM_MOD_ASSIGN
    $logger

    The logger name.

    返回值

    Return TRUE on released stream flow success, FALSE on failure.

    范例

    Example #1 SeasLog::closeLoggerStream() example

    <?php
    var_dump(SeasLog::closeLoggerStream());
    var_dump(SeasLog::closeLoggerStream(SEASLOG_CLOSE_LOGGER_STREAM_MOD_ALL));
    var_dump(SeasLog::closeLoggerStream(SEASLOG_CLOSE_LOGGER_STREAM_MOD_ASSIGN, 'logger_name'));
    ?>
    

    以上例程的输出类似于:

    bool(true)
    bool(true)
    bool(true)
    

    参见

    • SeasLog::setLogger() 设置 SeasLog 的 Logger 名
    • SeasLog::getLastLogger() 获得 SeasLog 最近的一次 Logger 名称