ID: 6624
Updated by: derick
Reported By: [EMAIL PROTECTED]
Old-Status: Feedback
Status: Closed
Bug Type: Scripting Engine problem
PHP Version: 4.0.2
Assigned To: 
Comments:

No feedback. If this problem persists with PHP 4.0.5 which
will be released next week, please reopen this report.

Derick

Previous Comments:
---------------------------------------------------------------------------

[2001-03-29 11:48:27] [EMAIL PROTECTED]
Does this happen with PHP 4.0.4pl1?

--Jani


---------------------------------------------------------------------------

[2000-11-01 09:47:22] [EMAIL PROTECTED]
reclassified.

---------------------------------------------------------------------------

[2000-09-08 05:04:11] [EMAIL PROTECTED]
(minor flaw, don't know if it's important, but maybe worth a check)

I registered a shutdown function via register_shutdown_function(). For debugging 
purposes and because echo() isn't functional in the shutdown function, I used 
error_log('my log message',0), so that the "error"-messages showed up in 
apache/logs/error_log.

The error_log()-call in "normal code" produced an entry in apache error_log with 
timestamp and error type, and the error_log()-call in my shutdown callback function 
appeared without timestamp and error type (see snippet below)

----
example PHP-code

function myshutdown () {
   error_log('myshutdown() executed',0);
}
        
register_shutdown_function('myshutdown');
error_log('myshutdown-function registered',0);

----
Apache logs/error_log snippet

[Fri Sep  8 11:43:43 2000] [notice] Apache/1.3.12 (Unix) PHP/4.0.2 configured -- 
resuming normal operations
[Fri Sep  8 11:43:52 2000] [error] myshutdown-function registered
myshutdown() executed


---------------------------------------------------------------------------



ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=6624&edit=2


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to