php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #30384 PHP's HTML parser eats linefeeds
Submitted: 2004-10-10 19:31 UTC Modified: 2004-10-10 21:56 UTC
From: septh at freesurf dot fr Assigned:
Status: Not a bug Package: Output Control
PHP Version: 4.3.9 OS: Windows XP Pro
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: septh at freesurf dot fr
New email:
PHP Version: OS:

 

 [2004-10-10 19:31 UTC] septh at freesurf dot fr
Description:
------------
When parsing HTML source code, PHP seems to "eat" the linefeed after the ?> marker.

Tested on Windows XP Professional SP1 with Apache 1.3.31 and PHP 4.3.9. Unfortunately, I can't test it with any other versions (I do not have administrator access to the machine).


Reproduce code:
---------------
File test.php :
---------------

<html>
<head><title>Test</title></head><body>
<pre style="border: 1px solid black;">
line 1
<?php echo "line 2"; ?>
line 3
<?php echo "line 4"; ?>
line 5
</pre>
</body>
</html>


Expected result:
----------------
line 1
line 2
line 3
line 4
line 5


Actual result:
--------------
line 1
line 2line 3
line 4line 5


Note 1: Ok, I realize there are no "\n" ni my echo statements. However, there *is* a linefeed after each ?> in the HTML code, and I wouldn't expect PHP to remove them.

Note 2: by adding an extra character after the ?> (say, a space char), the ouput is correct.

Note 3: the problem arises whether I save the test.php file with PC-style (\n), Unix-style (\r\n), or Mac-style (\r) linefeeds.


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-10-10 21:56 UTC] mgf@php.net
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

It\'s documented behaviour.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 15:01:29 2024 UTC