[PHP] Re: shell script - disable log output

2005-03-09 Thread Eli
I suppose error_log(My error message, 3, /dev/null) would work. I cannot change the error_log() params, since it is cored in extern lib I use. Is there a way to prevent the default error_log() from being outputed? -thanks, Eli -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] Re: shell script - disable log output

2005-03-09 Thread Jason Barnett
Eli wrote: I suppose error_log(My error message, 3, /dev/null) would work. http://php.net/manual/en/ref.errorfunc.php#ini.error-log try: ini_set('error_log', null) -- Teach a man to fish... NEW? | http://www.catb.org/~esr/faqs/smart-questions.html STFA |

[PHP] Re: shell script - disable log output

2005-03-09 Thread Eli
Jason Barnett wrote: Eli wrote: I suppose error_log(My error message, 3, /dev/null) would work. http://php.net/manual/en/ref.errorfunc.php#ini.error-log try: ini_set('error_log', null) Doesn't work either.. :( but thanks for trying.. -- PHP General Mailing List (http://www.php.net/) To