PHP Conference Japan 2024

SeasLog::emergency

(PECL seaslog >=1.0.0)

SeasLog::emergency记录紧急日志信息

描述

public static SeasLog::emergency(string $message, array $content = ?, string $logger = ?): bool

记录紧急日志信息。

注意:

"EMERGENCY" - 系统无法使用。

参数

message

日志消息。

content

`message`包含占位符,实现者会用`content`数组中的值替换这些占位符。例如,`message`为`log info from {NAME}`,`content`为`array('NAME' => neeke)`,则日志信息将为`log info from neeke`。

logger

第三个参数指定的`logger`将在此处立即使用,如同一个临时日志器,在调用`SeasLog::setLogger()`之前设置内容。如果`logger`为NULL或"",SeasLog将使用SeasLog::setLogger()最后设置的日志器。

返回值

记录日志信息成功返回TRUE,失败返回FALSE。

示例

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

<?php

var_dump
(SeasLog::emergency('log message'));

//带content
var_dump(SeasLog::emergency('log message from {NAME}',array('NAME' => 'neeke')));

//带临时logger
var_dump(SeasLog::emergency('log message from {NAME}',array('NAME' => 'neeke'),'tmp_logger'));

var_dump(SeasLog::getBuffer());

?>

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

bool(true)
bool(true)
bool(true)
array(2) {
  ["/var/log/www/default/20180707.log"]=>
  array(2) {
    [0]=>
    string(81) "2018-07-07 11:45:49 | EMERGENCY | 73263 | 5b40376d1067c | 1530935149.68 | log message
"
    [1]=>
    string(92) "2018-07-07 11:45:49 | EMERGENCY | 73263 | 5b40376d1067c | 1530935149.68 | log message from neeke
"
  }
  ["/var/log/www/tmp_logger/20180707.log"]=>
  array(1) {
    [0]=>
    string(92) "2018-07-07 11:45:49 | EMERGENCY | 73263 | 5b40376d1067c | 1530935149.68 | log message from neeke
"
  }
}

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top