同 C 或 Perl 一样,PHP 需要在每个语句后用分号结束指令。一段 PHP 代码中的结束标记隐含表示了一个分号;在一个 PHP 代码段中的最后一行可以不用分号结束。如果后面还有新行,则代码段的结束标记包含了行结束。<?php
echo "This is a test";
?>
<?php echo "This is a test" ?>注: 文件末尾的 PHP...
PHP 支持 C,C++ 和 Unix Shell 风格(Perl 风格)的注释。例如:<?php echo "This is a test"; // This is a one-line c++ style comment /* This is a multi line comment yet another line of comment */ ...