PHP注释
注释(Comments)是指在程序编写过程中,对程序文件或者代码片段额外添加的一个备注说明。通过注释可以提高代码可读性,让自己或其他开发人员更快速地理解程序的。
注释在程序编程中非常重要,恰当的注释程序不仅是程序员的个人习惯,更是责任的体现。但在实际过程中,大部分程序员都没有良好的对程序进行注释习惯,这往往会在日后对自己或他人造成相当大的麻烦。
PHP 注释不属于 PHP 程序的一部分,其内容也不参与程序中的任何功能计算,在编辑器中以特殊颜色(如绿色)显示。
PHP 注释符号
PHP 支持 C++,C 和 Unix Shell 风格(Perl 风格)的注释,所以也产生了 3 种PHP注释符号:
- C++ 风格:// 这是 C+ 风格的注释
- C 风格:/* 这是 C 风格的注释 */
- Unix Shell 风格:# 这是 Unix Shell 风格的注释
一般大家都习惯使用 C 风格与 C++ 风格的注释。
PHP 注释格式
PHP 注释格式分为单行注释与多行注释。
1.PHP 单行注释
以上三种符号都可用于单行注释,只是使用 // 或 # 注释符时,注释符号后面的文本(本行内)都被视作注释内容,而 /* */ 风格注释符必须以 */ 结尾。
例子:
<?php // 这是单行注释 echo '你好!'; // 这是单行注释,写在一行代码后面也叫行尾注释 /* 这个注释风格也不错 */ # 较少用的风格 ?>
上面的行尾注释,通常只是对本行前面的内容进行注释,单写一行的注释可能是对下面的一行或多行代码进行注释,也可能是为了程序的整体美观。
2.PHP 多行注释
多行注释一般使用 C 风格注释符,以 /* 开头,*/ 结尾来包含多行注释内容:
<?php echo "你好!"; /* 这是多行大块注释 这里面都是注释内容 更多注释内容等 */ ?>
注意:不要嵌套使用 C 风格注释符,因为在碰到第一个 */ 时系统即认为该段注释结束,在注释掉一大块代码时很容易出现该错误。如下述用法将产生 PHP 语法错误:
<?php echo "你好!"; /* 这是多行大块注释 这里面都是注释内容 更多注释内容等 */ ?>
也可以多次使用 // 符号来注释多行代码,但一般只限于有限的几行:
<?php echo "你好!"; /* 这是多行大块注释 这里面都是注释内容 更多注释内容等 */ ?>
提示:PHP 注释中不能包含 PHP 代码结束符即:?>,因为在任何地方,PHP 检测到该结束符,即认为该段 PHP 代码结束而跳出 PHP 的执行。
原文地址:http://www.manongjc.com/php/php_comment.html
php相关阅读:
php 使用filter_var() 函数来检测url是否包含查询字符串

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The Secret of PHP Comments: Detailed Comparison of Single-line Comments and Multi-line Comments PHP is a widely used web development language, in which the use of comments plays a vital role in the readability and maintainability of the code. In PHP, common comments come in two forms: single-line comments and multi-line comments. This article will compare these two annotation forms in detail and provide specific code examples to help readers better understand their usage and differences. 1. Single-line comments A single-line comment is to add a line of comments in the code, starting with // and going to the end of the line. Single line comments

The types of PHP comments include single-line comments, multi-line comments, document comments, conditional comments, etc. Detailed introduction: 1. A single line comment starts with a double slash "//" and is used to comment a single line of code. In this comment type, everything from the beginning of the double slash to the end of the line will be regarded as a comment, not Will be interpreted as code; 2. Multi-line comments start with a slash asterisk "/" and end with an asterisk slash "*/". This comment type can be used to comment a piece of code or multiple lines of code; 3. Documentation comments It also starts with a slash-asterisk "/", ends with an asterisk-slash "*/", and so on.

Code comments are text reminders that programmers add when writing code to make it easier for themselves and other programmers to read and understand the code. In PHP, code comments are indispensable. This article will introduce in detail the types, specifications and uses of code comments in PHP. 1. Code comment types in PHP In PHP, there are three types of comments: single-line comments, multi-line comments and documentation comments. Single-line comments A single-line comment starts with a double slash "//" and ends at the end of the line. For example: //This is a single line comment multi-line comment multi-line comment ends with "

When entering the field of PHP programming, comments are a very important concept. When writing code, comments are crucial to clarify the intent of the code, help other developers understand the code logic, and facilitate yourself to maintain the code in the future. In PHP, comments are divided into single-line comments and multi-line comments, and there are some differences in usage. This article will deeply explore the characteristics of PHP comments and the use of single-line comments and multi-line comments, and illustrate it through specific code examples. 1. Single-line comments A single-line comment is to add a line of comments to the code to explain

The types of comments in PHP are: 1. Single-line comments, used to explain a certain function, remind other developers or yourself to pay attention, etc.; 2. Multi-line comments, used to explain multi-line code blocks in detail; 3. Document comments , used to provide a detailed description of the entire code block or function or method.

PHP is a popular server-side scripting language widely used in the field of web development. In the code writing process, comments are a very important element, which can help developers better understand the code and improve the readability and maintainability of the code. This article will introduce the comment types in PHP in detail, including single-line comments and multi-line comments, and provide specific code examples. Single-line comments In PHP, single-line comments can be achieved by using double slashes //. Single-line comments start with // and continue to the end of the line. Single-line comments are often used to comment on code

PHP Comment Specification: How to use documentation comments to write API documentation Introduction: When developing PHP applications, writing complete API documentation is very important for the development team and other developers. Good documentation improves code readability and maintainability, and promotes teamwork and information sharing. This article will introduce how to use documentation comments to write PHP API documentation, and provide some sample code to help readers understand how to write comments in a standardized way. Comment specification In PHP, we use comments to explain and describe the code. generally

How to use comments in PHP to enhance code readability and understandability Introduction: During the development process, comments are a very important component that can help developers better understand the code and improve the readability and maintainability of the code. . This article will introduce how to use comments in PHP to enhance the readability and understandability of code, and provide some practical code examples. Single-line comments Single-line comments are used to explain and illustrate a certain line of code. In PHP, single-line comments start with double slashes (//) and end at the end of the line. Here is an example
