|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-03-07 05:21 UTC] richter at jakota dot de
<?php
echo('X');
error_log('X', 0);
$daten_verlag[$rubrik['id']]] = $daten_rubrik;
?>
One bracket too much!
This makes PHP issue just 5 Bytes to the browser, regardless of any code following or preceeding this line.
I think it doesn't even execute the code because there doesn't appear anything in the logs, too.
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 22 03:00:01 2025 UTC |
Thank you, you pointed me to the reason for my problem: In the .htaccess file I found: php_value display_errors true must be: php_flag display_errors on That means: Due to this syntactically wrong statement in the htaccess-file PHP overides the default and sets this flag to "false". I think this is not the desired behaviour, isn't it?