Voting

: min(nine, four)?
(Example: nine)

The Note You're Voting On

paul dot chubb at abs dot gov dot au
16 years ago
When logging to apache on windows, both error_log and also trigger_error result in an apache status of error on the front of the message. This is bad if all you want to do is log information. However you can simply log to stderr however you will have to do all message assembly:

LogToApache($Message) {
$stderr = fopen('php://stderr', 'w');
fwrite($stderr,$Message);
fclose($stderr);
}

<< Back to user notes page

To Top