It's a newbie coding style recommendation. That's why it's typically mentioned in introduction books.
Leaving out ?> can avoid the infamous headers already sent problem. The closing token is not the real cause of that error message. It's extra whitespace after the ?> token which can cause that for certain application structures - namely outputting unnoticed whitespace by including other files.
PHP actually contains some magic to eat up a single \n newline after the php closing token. See The history of PHP eating newlines after the closing tag
There were some early issues of PHP not consuming \r\n. It worked on Windows, but scripts uploaded to Unix servers generated that error. So there's an additional pitfall. Not relevant anymore.
What's nowadays haunting newcomers is mostly unawareness and flaky editors. Most text editors have the habit of adding a newline at the end of files no matter what. That's not an issue, but newcomers often add one too. And obviously it happens a lot that code editing shuffles spaces, tabs and extra newlines after the ?> closing token. (No idea how they do not notice that!)
Therefore I think it's actually good advise for PHP noobs. However it's not really a foolproof way to avoid the aforementioned error. It just delays its discovery, as we Stackoverflowers should know. There are many more ways to trigger headers already sent and newcommers uncover them all. There's the invisible BOM or even HTML and <!DOCTYPE> before <?php, or oftentimes just plain print statments before the header() call.
That's why avoiding ?> is often seen as just a means to avoid explaining basic language behaviour, but not more of a solution than the magic ?>\r\n newline eating.
Solve it automated
Manual babysitting of ?> closing tags is not very contemporary either way.
phptags --warn --whitespace *.php
or even:
phptags --unclosed includes/
Will do that for you (editor hook, cron job, scm checkin script). The former also fixes the other potential pitfalls, not only closetag issue. See phptags tag tidier.
?>is lazy? – El Yobo Dec 12 '10 at 12:24