Blogger Information
Blog 2
fans 0
comment 0
visits 2408
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP中的注释
天明的博客
Original
1548 people have browsed it

所谓注释,汉语解释可以为:注解。更为准确一些。

因为代码是英文的、并且代码很长,时间长了人会忘。

所以我们会加上注释。

注释的功能有很多:

1.  对重点进行标注

2.  时间长了容易忘快速回忆,方便查找

3.  让其他人看的时候快速看懂

4.  还可以生成文档,代码写完相关的文档就写完了,提高工作效率

5.  注释、空行、回车之后的代码看起来更优美

6.  注释可用来排错。不确定代码中哪一块写错了,可以将一大段注释,确定错误区间

7.  注释中间的部份的内容,电脑不会执行它

我们了解了注释的好处,接下来我们来说PHP的注释,注释分别:

单行注释(只注释一行)

// 双斜杠表示单行注释   有时也用 # 表示  但用的比较少,多用 //

多行注释(注释多行)

以 /* 开始   */结束 代表多行注释


单行注释举例:

<?php
 //声明一部iphone6手机的价格变量
 $iphone6_price = 6088;
 
 //显示输出手机价格
 echo $iphone6_price;
 
?>

注:通过上例我们知道,注释通常写代码上面。


多行注释举例:

<?php 

/*

 作者:刘奇

 时间:2048.12.23

 功能:这是一个假的多行注释的例子

 */

 ?>

注:通过上面的例子我们发现,我们要写上很多注释的时候,适用多行注释。


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