[PHP-DEV] PHP3 once again - latest cvs-version From: Jan Legenhausen (jan <email protected>)
Date: 05/30/98

Hi,

Once in the process of re-checking all those nifty little features which
didn't work completly so far, i stumbled over error_log().
If you try the snippet below, you'll find "my-errors.log" ending up in
containing only "You Once" - nothing else.
Since "message" in fwrite() in basic_functions.c contains the correct
content, i don't know where to look...
This is on Linux 2.0.33, if it matters.

Btw, do you prefer if i put those little bugs into your
online-bug-database? If so, i'll do it next time.

yours, Jan

<?
error_log("You messed up!\n", 3, "/tmp/my-errors.log");
error_log("Once again...\n", 3, "/tmp/my-errors.log");
?>