ID: 50839
Comment by: miqrogroove at gmail dot com
Reported By: miqrogroove at gmail dot com
Status: Open
Bug Type: *Configuration Issues
Operating System: Windows 2003
PHP Version: 5.3.1
New Comment:
A second way to describe the issue is that the error_log() function is
throwing bogus errors. As in:
<?php
ini_set('error_reporting', -1);
ini_set('display_errors', 1);
ini_set('log_errors', 1);
error_log('Hello World');
?>
This causes 'Hello World' to go to disk, and the bogus Warning to go
to screen.
I used a different example in OP to illustrate the fact that PHP is
saying that the Warning was generated by any function whether or not
it uses timezones in the first place.
Previous Comments:
------------------------------------------------------------------------
[2010-01-26 01:15:41] miqrogroove at gmail dot com
Description:
------------
There is a situation where PHP will display errors but never log them.
It almost seems as though error logging is causing errors now? Is that
the most useless kind of feedback message ever? Warning errors are
causing errors omgah barbeque.
Reproduce code:
---------------
<?php
ini_set('error_reporting', -1);
ini_set('display_errors', 1);
ini_set('log_errors', 1);
trigger_error('Hello', E_USER_ERROR);
?>
Expected result:
----------------
Fatal error: Hello in test.php on line 7
Actual result:
--------------
Warning: trigger_error() [function.trigger-error]: It is not safe to
rely on the system's timezone settings. You are *required* to use the
date.timezone setting or the date_default_timezone_set() function. In
case you used any of those methods and you are still getting this
warning, you most likely misspelled the timezone identifier. We
selected
'America/New_York' for '-5.0/no DST' instead in test.php on line 7
Fatal error: Hello in test.php on line 7
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=50839&edit=1