Einige Leute schwören darauf, ihre PHP-Dateien mit zu schließen ?>
, andere sagen, es sei besser, es wegzulassen.
Ich weiß, dass es nicht unbedingt erforderlich ist, es dort zu haben. Ich frage mich nur, was die Vor- und Nachteile sind und welche bewährten Methoden dies sind.
If a file is pure 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.