- PHP Basics
- Learn PHP
- PHP Comments
- PHP Data Types
- PHP Variables
- PHP Operators
- PHP echo
- PHP print
- PHP echo vs. print
- PHP if else
- PHP switch
- PHP for Loop
- PHP while Loop
- PHP do...while Loop
- PHP foreach Loop
- PHP break and continue
- PHP Arrays
- PHP print_r()
- PHP unset()
- PHP Strings
- PHP Functions
- PHP File Handling
- PHP File Handling
- PHP Open File
- PHP Create a File
- PHP Write to File
- PHP Read File
- PHP feof()
- PHP fgetc()
- PHP fgets()
- PHP Close File
- PHP Delete File
- PHP Append to File
- PHP Copy File
- PHP file_get_contents()
- PHP file_put_contents()
- PHP file_exists()
- PHP filesize()
- PHP Rename File
- PHP fseek()
- PHP ftell()
- PHP rewind()
- PHP disk_free_space()
- PHP disk_total_space()
- PHP Create Directory
- PHP Remove Directory
- PHP Get Files/Directories
- PHP Get filename
- PHP Get Path
- PHP filemtime()
- PHP file()
- PHP include()
- PHP require()
- PHP include() vs. require()
- PHP and MySQLi
- PHP and MySQLi
- PHP MySQLi Setup
- PHP MySQLi Create DB
- PHP MySQLi Create Table
- PHP MySQLi Connect to DB
- PHP MySQLi Insert Record
- PHP MySQLi Update Record
- PHP MySQLi Fetch Record
- PHP MySQLi Delete Record
- PHP MySQLi SignUp Page
- PHP MySQLi LogIn Page
- PHP MySQLi Store User Data
- PHP MySQLi Close Connection
- PHP Misc Topics
- PHP Object Oriented
- PHP new Keyword
- PHP Cookies
- PHP Sessions
- PHP Date and Time
- PHP GET vs. POST
- PHP File Upload
- PHP Image Processing
Comments in PHP with Examples
In PHP, comments are used to insert notes into the code that can be read by humans but are disregarded by the PHP interpreter. For the benefit of other programmers, comments can help clarify the intent and functionality of the code, making it simpler to understand and maintain.
PHP scripts can be described using comments. Comments also aid in later debugging of the PHP script.
Types of Comments in PHP
Following are the two types of comments provided by the PHP language.
Single-line comments in PHP
Single-line comments are one line long. They begin with two forward slashes (//) and go on until the end of the line. For instance:
// It's a single-line comment in PHP. // This is another single-line comment in PHP.
Multi-line comments in PHP
Multi-line comments begin with /* and end with */. Between these two symbols, everything is regarded as a comment. For instance:
/* It's a multi-line comment in PHP. */ /* This is another multi-line comment in PHP. */
PHP comment examples
The following example uses the comments to describe the PHP codes.
<?php /* The following line of PHP code prints the text "Hello there 1" */ echo "Hello there 1"; // The following line of code breaks the line echo "<BR>"; /* The following line of code does the same job of printing the text "Hello there 2" on the output */ print "Hello there 2"; ?>
Hello there Hello there
Advantages of comments in PHP
- PHP comments can aid other programmers in understanding the code and its function. It is simpler to maintain and update code that is self-explanatory, and adding comments can make the code more approachable to others.
- Debugging: When debugging code, comments can be helpful. Programmers can more quickly find and fix problematic code by commenting out the lines that are causing problems.
- Comments can aid in team collaboration when writing code. Multiple programmers can collaborate on the same codebase without causing conflicts or misunderstandings by leaving notes and explanations in the comments.
Disadvantages of comments in PHP
- Code Clutter: Comments, especially when used excessively, can add clutter to code. Too many comments can make the code difficult to read and comprehend.
- Outdated Comments: If comments are not updated in tandem with the code, they will become obsolete. This is especially true if the comments are inaccurate or misleading.
- Writing comments is time-consuming and can slow down the coding process. To save time, programmers may be tempted to skip adding comments, but this can lead to problems later on.
« Previous Tutorial Next Tutorial »