Home  >  Article  >  Backend Development  >  What are the php comments?

What are the php comments?

青灯夜游
青灯夜游Original
2019-10-19 17:37:195016browse

What are the php comments?

Comments in PHP code will not be read and executed as programs. Its only purpose is to be read by code editors.

PHP supports three types of comments

1. Start with // as a single-line comment. For example:

2. Start with # as a single-line comment. For example:

3. Multi-line comments starting with /* and ending with * /. For example:

Note: There should be no space between * and / above.

The role of php comments

1. Explain the code function;

2.Debug the program.

Note: It is necessary to comment in the code. Standard comments make the source code easier for humans to understand, and can help us understand the code written by others or ourselves before.

For more PHP related knowledge, please visit php中文网!

The above is the detailed content of What are the php comments?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn