如何在 Windows 中为我的 PHP 应用程序配置 Syslog?我有 Surferd in Internet Shows 许多服务器需要安装。
使用 PHP 获取 SysLog 做了哪些配置?
如何在 Windows 中为我的 PHP 应用程序配置 Syslog?我有 Surferd in Internet Shows 许多服务器需要安装。
使用 PHP 获取 SysLog 做了哪些配置?
// 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();