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.

link|improve this question

68% accept rate
4  
Many older text editors always inject a trailing newline. And trailing whitespace led to "headers already sent" errors. The PHP interpreter actually circumvents this problem, and eats up a SINGLE trailing \r and \n newline after the ?> closing tag. Some unpracticed programmers however errornously added two or more trailing newlines or spaces, tabs after ?>. That's why it's considered good newbie guidance to omit the PHP close marker. It's however not indicative of good coding style. – mario Jul 10 '10 at 14:33
@mario "It's however not indicative of good coding style." -> Not at all. Zend Framework (considered the most robust -and thus complex- by some) and many other professionals and organizations actually prohibits adding ?> to files unnedcessarily. Zend Framework Coding Standard PHP File Formatting – Halil Özgür Nov 15 '10 at 14:36
1  
@battal So do many other coding styles. I could counter argue with Horde or PEAR coding guidelines or CodeSniffer complaining about omitted tags. But in the end, every generalization is a lie. Declaring any one method as standard doesn't make it best practice. IMO use cases and developer proficiency should be determining here. (But yes, also stick to a chosen coding guideline!;) – mario Nov 15 '10 at 14:55
feedback

6 Answers

up vote 30 down vote accepted

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.

link|improve this answer
15  
Some would also consider this to be a language defect. – D.Shawley Jul 10 '10 at 13:42
1  
In some cases isn't it what is required? People are responsible for cleaning up the whitespaces after the ending tag. In some cases someone might require the output after the ending tag. – Kieran Allen Jul 10 '10 at 13:48
It's is the Zend and Drupal standard to omit the ?> tag. – Josh Jan 20 '11 at 17:35
1  
All parsers must stop parsing at the EOF (End of file), so a closing tag is redundant and not a language defect. – Peter Johnson Jul 24 '11 at 17:01
feedback

From PHP: 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.

link|improve this answer
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.

link|improve this answer
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 ?

link|improve this answer
Hum, not really - with output buffering enabled theres no need to omit closing tags imho. – dhh Feb 17 '11 at 7:38
feedback

See http://choosetheforce.blogspot.com/2008/05/should-you-close-that-php-tag.html for a discussion on this topic.

link|improve this answer
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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.