PHP tags: If a file contains only PHP code

If a file contains only PHP code

<?php
echo "Hello world";

// ... more code

echo "Last statement";

// the script ends here with no PHP closing tag

If a file contains only PHP code, it is preferable to omit the PHP closing tag at the end of the file. This prevents accidental whitespace or new lines being added after the PHP closing tag, which may cause unwanted effects because PHP will start output buffering when there is no intention from the programmer to send any output at that point in the script.

Related concepts

If a file contains only PHP code

PHP tags: If a file contains only PHP code — Structure map

Clickable & Draggable!

PHP tags: If a file contains only PHP code — Related pages: