|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2005-01-02 20:22 UTC] rasmus@php.net
  [2005-01-03 00:55 UTC] iliaa@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 17:00:02 2025 UTC | 
Description: ------------ highlight_file () doesn't seem to be understanding heredoc's quite right. It forgets to place a line return after the closing heredoc tag. Reproduce code: --------------- test.php <?php $here = <<<DOC asdf asdf asdf DOC; highlight_file ('test.php'); ?> Expected result: ---------------- <?php $here = <<<DOC asdf asdf asdf DOC; highlight_file ('test.php'); ?> Actual result: -------------- <?php $here = <<<DOC asdf asdf asdf DOC;highlight_file ('test.php'); ?>