ID: 22165
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Feedback
Bug Type: Output Control
Operating System: 4.7-STABLE FreeBSD
PHP Version: 4.3.0
New Comment:
I don't have pgsql compiled right now..but does
it output 2 errors? [EMAIL PROTECTED] is right about
the include() error, it does output 2 errors..
Previous Comments:
------------------------------------------------------------------------
[2003-02-11 14:18:04] [EMAIL PROTECTED]
it's no bug.
Some errors have more than 1 error.
example
if error will be in this line:
include('badfilename.blabla');
so be 2 error's.:
1.
main(badfilename.blabla) [function.main]: failed to create stream: No
such file or directory
2.
main() [function.main]: Failed opening 'badfilename.blabla' for
inclusion (include_path='.;c:\php4\pear')
because it's warning type error, so every time error apears.
example.
join('', 'sting is mine');
will be only one.
------------------------------------------------------------------------
[2003-02-11 09:59:17] [EMAIL PROTECTED]
Not enough information was provided for us to be able
to handle this bug. Please re-read the instructions at
http://bugs.php.net/how-to-report.php
If you can provide more information, feel free to add it
to this bug and change the status back to "Open".
Thank you for your interest in PHP.
------------------------------------------------------------------------
[2003-02-11 05:47:29] [EMAIL PROTECTED]
It seems that PHP versions 4.3.0 and 4.2.3 (mod_php) doubles output
buffer inside cusom error handling function.
Let's take simple error handling script:
<?php
function error_handler($errno, $errstr, $errfile,
$errline,$errcontext)
{
echo "123";
echo "abc";
}
set_error_handler('error_handler');
pg_query('asdf'); // let's trigger error;
?>
I get output "123abc123abc".
Testet on serveral servers/configurations.
my compile options:
Configure Command './configure' '--with-apxs=/usr/local/sbin/apxs'
'--with-config-file-path=/usr/local/etc' '--enable-versioning'
'--with-regex=system' '--without-gd' '--without-mysql'
'--with-gd=/usr/local' '--enable-gd-native-ttf'
'--with-freetype-dir=/usr/local' '--with-jpeg-dir=/usr/local'
'--with-png-dir=/usr/local' '--with-zlib' '--with-bz2=/usr'
'--with-mcrypt=/usr/local' '--with-mhash=/usr/local'
'--with-pdflib=/usr/local' '--with-zlib-dir=/usr'
'--with-jpeg-dir=/usr/local' '--with-png-dir=/usr/local'
'--with-tiff-dir=/usr/local' '--with-mysql=/usr/local'
'--with-pgsql=/usr/local' '--with-openssl=/usr'
'--with-snmp=/usr/local' '--enable-ucd-snmp-hack' '--with-openssl=/usr'
'--with-expat-dir=/usr/local' '--with-xmlrpc' '--enable-ftp'
'--with-curl=/usr/local' '--with-gettext=/usr/local' '--enable-sockets'
'--enable-trans-sid' '--with-iconv=/usr/local' '--prefix=/usr/local'
'i386-portbld-freebsd4.7'
flushing buffer before/after triggering error or before/after the err
handling ouput doesn't help.
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=22165&edit=1