Hello...
I'm writing a shell script that uses error_log function to log some data, but it echos the error message to the output without logging the message to the log file.
Code I use (php5 on unix):
*********************************************
#!/usr/local/php/bin/php -q
<?php
error_log("My error message");
?>
*********************************************
OUTPUT:
$ test.php
My error message
$How can I prevent the error messages from being echoed to the client?
-thanks, Eli
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

