指令结束符
PHP 需要在每个语句后用分号结束指令。
<?php
echo "This is a test";
?>
<?php echo 'We omitted the last closing tag';
注释
单行注释
// 注释或是注释单行代码
<php echo 'this is a test'; // 测试 // echo '注释';这行代码就不执行
多行注释
/*......*/ 注释多行内容或代码
<?php /* 多行注释 多行注释 */ echo "This is yet another test" ; /* echo 'hehe'; echo 'hehe'; echo 'hehe'; */ // 注释多行代码,被注释的代码将不会再执行
#注释
<?php echo 'One Final Test' ; # This is a one-line shell-style comment
注释在碰到第一个 */ 时结束。要确保不要嵌套 C 风格的注释。试图注释掉一大块代码时很容易出现该错误。
<?php
/*
echo "This is a test"; /* This comment will cause a problem */
*/
?>