Posted by Eli on 10/03/77 11:10
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
Navigation:
[Reply to this message]
|