In some scripts I see that they omit writing a closing tag ?> for the script. I don't know why. Can someone tell me why and if I should do this as well?
(I'm sure they have not forgotten it.)
Edit: thank you guys, I got it now.
|
feedback
|
|
Well, omitting the closing tag is just one solution for avoiding blanks and other characters at the end of file. For example any char which is accidentally added behind the closing tag would trigger an error when trying to modify header info later. Removing the closing tag is kind of "good practice" referring to many coding guidelines. | |||||||||||||||
feedback
|
|
From PHP: Instruction Separation
| ||||
|
feedback
|
|
They do it to avoid risking to have whitespaces after the closing tag which may stop headers to work. This is, of course, true for PHP-only files. | |||
|
feedback
|
|
"Modern versions of PHP set the output_buffering flag in php.ini If output buffering is enabled, you can set HTTP headers and cookies after outputting html because returned code is not sent to the browser immediately" Are the examples still valid in this context ? | |||
feedback
|
|
See http://choosetheforce.blogspot.com/2008/05/should-you-close-that-php-tag.html for a discussion on this topic. | |||
|
feedback
|
|
CodeIgniter Framework suggests to omit closing tags for "... can cause unwanted output, PHP errors or blank pages". You can read it here: http://codeigniter.com/user_guide/general/styleguide.html#php_closing_tag | |||
|
feedback
|
?>to files unnedcessarily. Zend Framework Coding Standard PHP File Formatting – Halil Özgür Nov 15 '10 at 14:36