Home > Backend Development > PHP Problem > What are the ways to add comments in php?

What are the ways to add comments in php?

青灯夜游
Release: 2023-02-26 21:36:02
Original
6384 people have browsed it

Comments in the program should express the processing instructions of the program in simple, clear, and precise language. Avoid using comments for each line of the program. You can add a comment in front of a program to have clear processing logic. So, what are the ways to add comments in php?

What are the ways to add comments in php?

Several ways to add comments to PHP code:

1. Start with //, as Single line comments. For example:

<?php
    // Author: mole
    // Date:2012-2-8
    echo "Welcome!";
?>
Copy after login

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

<?php
    # Author: mole
    # Date:2012-2-8
    echo "Welcome!";
?>
Copy after login

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

<?php
    /*
      下面是计算员工平均
      工资的函数

    * /
    calculate();

?>
Copy after login

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

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

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template