|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-09-12 10:08 UTC] tony2001@php.net
[2006-09-20 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 03:00:02 2025 UTC |
Description: ------------ With the example code the line number is wrong and the parse skip line codes; Reproduce code: --------------- <?php $a = 3; switch ($a) { case 1: echo 1; $p = <<<EOF text text EOF; break; case 2: echo 1; $p = <<<EOF text text EOF; break; case 3: print __LINE__; break; default: break; } ?> Expected result: ---------------- 22 Actual result: -------------- 24