|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-04-21 23:33 UTC] binarte at gmail dot com
[2012-04-22 04:29 UTC] laruence@php.net
-Status: Open
+Status: Wont fix
[2012-04-22 04:29 UTC] laruence@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 11:00:01 2025 UTC |
Description: ------------ Calls to trigger_error() gets the message truncated whenever Test script: --------------- <?php $str = 'a'; for ($x = 0; $x < 0x20; $x++){ $str .= chr($x); } $str .= 'b'; trigger_error($str); Expected result: ---------------- Notice: a b in /home/.../bug.php on line 9 Actual result: -------------- Notice: a in /home/.../bug.php on line 9