Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我看过一些文章解释说,由于结束 PHP 标记 (?>),PHP 代码的最后一行不需要分号。是这种情况还是周围有任何其他理论?
分号表示指令的结束,并且可以开始新的指令。当找到结束标签时,不需要新的指令,因此在技术上不需要。
它在<?= 'foobar' ?>不需要使用分号来回显字符串的情况下很有用,但<?= 'foobar'; ?>效果也很好。
<?= 'foobar' ?>
<?= 'foobar'; ?>