Comments are not used to perform any function in the program but are useful for developers. Developers can write comments with variables and functions to remember their working (purpose) in the program. One important thing to mention is that comments don’t have any impact on the execution of the program.
Page Contents
Types of Comments:
- Single Line comments
- Multi-Line comments
Single-Line Comments: –
These are used to add single-line comments with a variable or any function. There are two ways to write single-line comments using the // symbol or # symbol.
Example Program: –
<?php
// Single comment using // symbol
# Single comment using # symbol
echo "Welcome to Owlbuddy";
?>
Multi-Line Comments: –
These are used to add a multi-line comment with a variable or any function. /* */ symbols are used to add Multi-Line comments.
Example Program: –
<?php
/*
These multiline
comments also
use to hide
code.
*/
echo "Welcome to Owlbuddy";
?>

Parvesh Sandila is a passionate web and Mobile app developer from Jalandhar, Punjab, who has over six years of experience. Holding a Master’s degree in Computer Applications (2017), he has also mentored over 100 students in coding. In 2019, Parvesh founded Owlbuddy.com, a platform that provides free, high-quality programming tutorials in languages like Java, Python, Kotlin, PHP, and Android. His mission is to make tech education accessible to all aspiring developers.