How to write comments in PHP ?

In this article, we have to pass a comment for PHP code by using some simple basic syntax. Comments are helpful to understand the complex code. The comment tag is useful during the debugging of the codes. We use comments to understand the functionality of the code. 

Basically, the single-line comments begin with // comments.   

Example 1:  

PHP




<?php
  
// Output "Hello w3wiki"
echo "Hello w3wiki";
  
?>


Output:

Hello w3wiki

Example 2: Multiline comments begin with /* and ends with */.

PHP




<?php
  
echo "Hello Beginner"
/* It will print the 
   message   "Hello Beginner" */
  
?>


Output:

Hello Beginner

Supported Browsers are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera

Contact Us