9

我有这个 PHP 代码:

error_log('my message 1');
....
error_log('my message 2');
...
error_log('my message 3');

这会在 apache error_log 中生成包含所有消息的一行:

[Wed Nov 13 17:24:55.880399 2013] [proxy_fcgi:error] [pid xx] [client xxx] AH01071: Got error 'PHP message: my message 1\n'PHP message: my message 2\n'PHP message: my message 3

我的配置:

Apache 2.4
PHP : 5.4
PHP-FPM with proxypassmatch directive.

我的问题:为什么消息在同一行,以及如何每条消息有一行?

谢谢你的回答。

编辑

每条消息一行应如下所示:

[Wed Nov 13 17:24:55.880399 2013] [proxy_fcgi:error] [pid xx] [client xxx] AH01071: Got error 'PHP message: my message 1'
[Wed Nov 13 17:24:55.880399 2013] [proxy_fcgi:error] [pid xx] [client xxx] AH01071: Got error 'PHP message: my message 2'
[Wed Nov 13 17:24:55.880399 2013] [proxy_fcgi:error] [pid xx] [client xxx] AH01071: Got error 'PHP message: my message 3'
4

2 回答 2

2
error_log("error message \r\n");

PHP 忽略单引号内的特殊 ASCII 字符(将其呈现为单独的字符),您需要使用双引号。

另外:您应该打开您的 php.ini 文件,该文件位于 /etc/php5/apache2/ 文件夹中,并更改error_log指令以指向一个文件。

重要的是 Apache 将有足够的权限写入这个文件。所以 chown www-data:www-data /var/www/somefile.log 应该这样做

如果当前未定义,则日志将通过 syslog,并且不允许有新行。

附加编辑:要穿透输出缓冲,您需要引发异常。

例子:

try{
  ob_start();
  doSomething($userInput);
  ob_end_flush();
}
catch(Exception $e){
 error_log($e->getMessage());
}

function doSomething($data = null){
  if($data === null){
    throw new Exception("Data is required");
  }
  else{
    //do something
  }

}
于 2013-11-14T08:47:40.820 回答
0

用户\r\n

error_log("my message 1\r\n");
....
error_log("my message 2\r\n");
...
error_log("my message 3\r\n");
于 2013-11-13T16:50:41.587 回答