A comment is a type of annotation that can be used to clarify the purpose and intent of a piece of code. When using PHP, you have several options to choose from that stem from popular older languages with two choices of single line comments and also a multi-line C-style comment. You can use comments to keep sections of code from running, and can even use them to create documentation.

Part 1
Part 1 of 2:

Styles

  1. 1
    Use single-line comments for short comments. If you need to leave a short comment, you can use the single-line comment code. The comment will only last to the end of the line or the end of the code block. These comments only work within PHP tags, and will be read if placed in HTML.[1]
     <?php
     
     // This is the standard (C++) way to create a single-line comment
     
     # You can also use this Unix style to create a single-line comment
     
     ?>
    
  2. 2
    Use multi-line comments for longer comments or code testing. Multi-line comments are useful for writing a long explanation, or for preventing a segment of code from being processed. See the "Usage" section below for some tips on using multi-line comments.[2]
     <?php
     
    /* This is how you format
    a multi-line comment. Everything 
    until the ending tag will be included
    in the comment */
    
    /* Some people like to include 
    * extra markers at the beginning 
    * of each line. This can help with readability
    * for large comments, but isn't necessary.
    */
    
     ?>
    
  3. Advertisement
Part 2
Part 2 of 2:

Usage

  1. 1
    Use comments to leave notes about how code works. You shouldn't have to do this for every line of code, since good code should be fairly easy to parse by other programmers. It is useful if the code is performing irregular or not obvious functions.[3]
    // Generate curl request
    $session = curl_init($request);
    // Tell curl to use HTTP POST
    curl_setopt ($session, CURLOPT_POST, true);
    
  2. 2
    Leave comments so that you remember what you were doing. Whenever you're working on your own projects, comments can help you remember where you left off. Leave comments on code that isn't working properly, or that you haven't finished yet.
    // Need to revisit the output for this before moving on
    echo "Hello World!";
    
  3. 3
    Comment on code you intend to share. If you plan on collaborating with others, or intend to make your code open-source, comments can help others figure out how your code functions and the best places to make improvements.[4]
    /* Is there a more effective way to accomplish this? */
    Gender:
    <input type="radio" name="gender"
    <?php if (isset($gender) && $gender=="female") echo "checked";?>
    value="female">Female
    <input type="radio" name="gender"
    <?php if (isset($gender) && $gender=="male") echo "checked";?>
    value="male">Male
    
  4. 4
    Use comments to keep specific blocks of code from being run. This is useful if you're testing something and need to prevent certain code from being run. Anything contained within the comment tags will be ignored when the page is loaded.
     <?php
     
    echo "/*Hello*/ World!";
     
     /* The word "Hello" will not be displayed 
     when the above code is run */
     
     ?>
    
  5. 5
    Be careful when commenting out large blocks of code. The comment function will end whenever the first ending tag is hit, so if there's already a multi-line comment inside the code you comment out, the comment will only last until the end of the original nested comment.
     <?php
     
     /* 
    echo "Hello World!"; /* This comment will mess things up */
    */
    
     ?>
    


     <?php
     
     /* 
    echo "Hello World!"; // This comment will be fine
    */
    
     ?>
    
  6. 6
    Use comments to create pseudo-documentation. You can use some creative code formatting to create documentation for your code directly in the code. This can be useful for open-source projects.
     <?php
     
     //=============
     // HEADING
     //=============
     
     //-------------
     // Sub-Heading
     //-------------
     
     /* Title Of Section */
     
     # Documentation can go here
     # A second piece can go here
     
     /*
     * Use these for explaining something
     * that would take several lines or 
     * even multiple paragraphs to explain
     */
     
     ?>
    
  7. Advertisement

About This Article

wikiHow is a “wiki,” similar to Wikipedia, which means that many of our articles are co-written by multiple authors. To create this article, 18 people, some anonymous, worked to edit and improve it over time. This article has been viewed 51,397 times.
How helpful is this?
Co-authors: 18
Updated: March 10, 2023
Views: 51,397
Categories: Web Programming
Article SummaryX

1. Place // at the beginning of the line for a single-line comment.
2. Place /* at the beginning of a multi-line comment, and */ at the end.

Did this summary help you?
Advertisement