Alcune persone giurano chiudendo i loro file PHP con ?>
, alcuni dicono che è più ottimizzato per lasciarlo fuori.
So che non è essenziale averlo lì, mi sto solo chiedendo quali sono i pro e i contro di fare questo e quali sono le migliori pratiche.
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.