【php】关于尾部去除和分号问题

One thing to remember is, if you decide to omit the closing PHP tag, then the last line of the file should be ended with semi colon. If you add the closing tag then last line doesn't need to end with semi colon.

<?php
echo "First line";
echo "Last line"

The above code throws error as it neither has closing tag nor semicolon endingSo it should be replaced with either of the below two

<?php
echo "First line";
echo "Last line";

or

<?php
echo "First line";
echo "Last line" ?>

如果需要保存尾部的换行,在?>后面添加一个空格或者换行

原文地址:https://www.cnblogs.com/china-flint/p/9589342.html