Closed (works as designed)
Project:
Webserver authentication
Version:
master
Component:
Documentation
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
24 Apr 2007 at 15:19 UTC
Updated:
15 May 2007 at 07:54 UTC
The latest head release is missing the closing php tag.
Thanks.
Comments
Comment #1
alexanderpas commentedfrom: http://nl2.php.net/language.basic-syntax.instruction-separation
The closing tag of a PHP block at the end of a file is optional, and in some cases omitting it is helpful when using include() or require(), so unwanted whitespace will not occur at the end of files, and you will still be able to add headers to the response later. It is also handy if you use output buffering, and would not like to see added unwanted whitespace at the end of the parts generated by the included files.