Blogger Information
Blog 29
fans 0
comment 0
visits 34973
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP的基本语法—指令结束符和注释
小臣
Original
910 people have browsed it

指令结束符

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 */

  */
?> 



Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post