0

如何在 Windows 中为我的 PHP 应用程序配置 Syslog?我有 Surferd in Internet Shows 许多服务器需要安装。

使用 PHP 获取 SysLog 做了哪些配置?

4

1 回答 1

0
    // open syslog, include the process ID and also send
// the log to standard error, and use a user defined
// logging mechanism
openlog("myScriptLog", LOG_PID | LOG_PERROR, LOG_LOCAL0);

// some code

if (authorized_client()) {
    // do something
} else {
    // unauthorized client!
    // log the attempt
    $access = date("Y/m/d H:i:s");
    syslog(LOG_WARNING, "Unauthorized client: $access {$_SERVER['REMOTE_ADDR']} ({$_SERVER['HTTP_USER_AGENT']})");
}

closelog();

更多检查这个http://php.net/manual/en/function.syslog.php

于 2013-08-12T07:14:04.600 回答